diff --git a/src/libs/Dataloop/Generated/Dataloop.IOrgIntegrationsClient.CreateIntegration.g.cs b/src/libs/Dataloop/Generated/Dataloop.IOrgIntegrationsClient.CreateIntegration.g.cs index 77aebfc..78ff2ed 100644 --- a/src/libs/Dataloop/Generated/Dataloop.IOrgIntegrationsClient.CreateIntegration.g.cs +++ b/src/libs/Dataloop/Generated/Dataloop.IOrgIntegrationsClient.CreateIntegration.g.cs @@ -116,7 +116,7 @@ public partial interface IOrgIntegrationsClient global::Dataloop.Dictionary options, string name, global::Dataloop.IntegrationType2 type, - global::Dataloop.IKeyValueMetadata? metadata = default, + global::Dataloop.IntegrationTypeMetadata? metadata = default, global::Dataloop.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Dataloop/Generated/Dataloop.JsonConverters.IntegrationTypeMetadata.g.cs b/src/libs/Dataloop/Generated/Dataloop.JsonConverters.IntegrationTypeMetadata.g.cs new file mode 100644 index 0000000..e05d5de --- /dev/null +++ b/src/libs/Dataloop/Generated/Dataloop.JsonConverters.IntegrationTypeMetadata.g.cs @@ -0,0 +1,143 @@ +#nullable enable +#pragma warning disable CS0618 // Type or member is obsolete + +namespace Dataloop.JsonConverters +{ + /// + public class IntegrationTypeMetadataJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Dataloop.IntegrationTypeMetadata Read( + ref global::System.Text.Json.Utf8JsonReader reader, + global::System.Type typeToConvert, + global::System.Text.Json.JsonSerializerOptions options) + { + options = options ?? throw new global::System.ArgumentNullException(nameof(options)); + var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); + + using var __jsonDocument = global::System.Text.Json.JsonDocument.ParseValue(ref reader); + var __rawJson = __jsonDocument.RootElement.GetRawText(); + var __jsonProps = new global::System.Collections.Generic.HashSet(); + if (__jsonDocument.RootElement.ValueKind == global::System.Text.Json.JsonValueKind.Object) + { + foreach (var __jsonProp in __jsonDocument.RootElement.EnumerateObject()) + { + __jsonProps.Add(__jsonProp.Name); + + } + } + + var __score0 = 0; + if (__jsonProps.Contains("provider")) __score0++; + if (__jsonProps.Contains("ref")) __score0++; + var __score1 = 0; + if (__jsonProps.Contains("endpoint")) __score1++; + if (__jsonProps.Contains("region")) __score1++; + var __bestScore = 0; + var __bestIndex = -1; + if (__score0 > __bestScore) { __bestScore = __score0; __bestIndex = 0; } + if (__score1 > __bestScore) { __bestScore = __score1; __bestIndex = 1; } + + global::Dataloop.IKeyValueMetadata? iKeyValue = default; + global::Dataloop.IS3ApiMetadata? iS3Api = default; + if (__bestIndex >= 0) + { + if (__bestIndex == 0) + { + try + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Dataloop.IKeyValueMetadata), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Dataloop.IKeyValueMetadata).Name}"); + iKeyValue = global::System.Text.Json.JsonSerializer.Deserialize(__rawJson, typeInfo); + } + catch (global::System.Text.Json.JsonException) + { + } + catch (global::System.InvalidOperationException) + { + } + } + else if (__bestIndex == 1) + { + try + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Dataloop.IS3ApiMetadata), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Dataloop.IS3ApiMetadata).Name}"); + iS3Api = global::System.Text.Json.JsonSerializer.Deserialize(__rawJson, typeInfo); + } + catch (global::System.Text.Json.JsonException) + { + } + catch (global::System.InvalidOperationException) + { + } + } + } + + if (iKeyValue == null && iS3Api == null) + { + try + { + + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Dataloop.IKeyValueMetadata), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Dataloop.IKeyValueMetadata).Name}"); + iKeyValue = global::System.Text.Json.JsonSerializer.Deserialize(__rawJson, typeInfo); + } + catch (global::System.Text.Json.JsonException) + { + } + catch (global::System.InvalidOperationException) + { + } + } + + if (iKeyValue == null && iS3Api == null) + { + try + { + + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Dataloop.IS3ApiMetadata), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Dataloop.IS3ApiMetadata).Name}"); + iS3Api = global::System.Text.Json.JsonSerializer.Deserialize(__rawJson, typeInfo); + } + catch (global::System.Text.Json.JsonException) + { + } + catch (global::System.InvalidOperationException) + { + } + } + + var __value = new global::Dataloop.IntegrationTypeMetadata( + iKeyValue, + + iS3Api + ); + + return __value; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Dataloop.IntegrationTypeMetadata value, + global::System.Text.Json.JsonSerializerOptions options) + { + options = options ?? throw new global::System.ArgumentNullException(nameof(options)); + var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); + + if (value.IsIKeyValue) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Dataloop.IKeyValueMetadata), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Dataloop.IKeyValueMetadata).Name}"); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.IKeyValue!, typeInfo); + } + else if (value.IsIS3Api) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Dataloop.IS3ApiMetadata), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Dataloop.IS3ApiMetadata).Name}"); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.IS3Api!, typeInfo); + } + } + } +} \ No newline at end of file diff --git a/src/libs/Dataloop/Generated/Dataloop.JsonSerializerContext.g.cs b/src/libs/Dataloop/Generated/Dataloop.JsonSerializerContext.g.cs index 1c0ae58..aaceff3 100644 --- a/src/libs/Dataloop/Generated/Dataloop.JsonSerializerContext.g.cs +++ b/src/libs/Dataloop/Generated/Dataloop.JsonSerializerContext.g.cs @@ -829,6 +829,8 @@ namespace Dataloop typeof(global::Dataloop.JsonConverters.RecipeInputJsonConverter), + typeof(global::Dataloop.JsonConverters.IntegrationTypeMetadataJsonConverter), + typeof(global::Dataloop.JsonConverters.ModelOutputTypeJsonConverter), typeof(global::Dataloop.JsonConverters.IDateJsonConverter), @@ -2580,6 +2582,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Dataloop.JsonConverters.RecipeInputJsonConverter), + typeof(global::Dataloop.JsonConverters.IntegrationTypeMetadataJsonConverter), + typeof(global::Dataloop.JsonConverters.ModelOutputTypeJsonConverter), typeof(global::Dataloop.JsonConverters.IDateJsonConverter), @@ -3054,6 +3058,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.APIOrgDomain))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IntegrationType2), TypeInfoPropertyName = "IntegrationType22")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IKeyValueMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IS3ApiMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IntegrationTypeMetadata), TypeInfoPropertyName = "IntegrationTypeMetadata2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IntegrationMetadataBody))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IntegrationBody))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] @@ -3502,8 +3508,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IClusterVolumeConfigMapItem))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IClusterVolumeSecret))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IClusterVolumeSecretItem))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IClusterVolumeNfs))] internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -4331,6 +4335,8 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Dataloop.JsonConverters.RecipeInputJsonConverter), + typeof(global::Dataloop.JsonConverters.IntegrationTypeMetadataJsonConverter), + typeof(global::Dataloop.JsonConverters.ModelOutputTypeJsonConverter), typeof(global::Dataloop.JsonConverters.IDateJsonConverter), @@ -4759,6 +4765,8 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.AnyOf?), TypeInfoPropertyName = "PickS3DriverPayloadExcludeKeyofS3DriverPayloadPath_9a6ecea9b7debc31")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.AnyOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>?), TypeInfoPropertyName = "APIServiceDriver_c0617c242689fb32")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.AnyOf, global::System.Collections.Generic.List, global::System.Collections.Generic.List>, global::System.Collections.Generic.List, global::System.Collections.Generic.List, global::System.Collections.Generic.List, global::System.Collections.Generic.List, global::System.Collections.Generic.List>), TypeInfoPropertyName = "APIServiceDriver_ce74abc722e1be30")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IClusterVolumeSecretItem))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IClusterVolumeNfs))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IDeploymentSecurityContext))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IClusterEnvironmentVariable))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.IClusterEnvironmentVariableValueFrom))] @@ -5253,8 +5261,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -6082,6 +6088,8 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Dataloop.JsonConverters.RecipeInputJsonConverter), + typeof(global::Dataloop.JsonConverters.IntegrationTypeMetadataJsonConverter), + typeof(global::Dataloop.JsonConverters.ModelOutputTypeJsonConverter), typeof(global::Dataloop.JsonConverters.IDateJsonConverter), @@ -6510,6 +6518,8 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.AnyOf?), TypeInfoPropertyName = "PickS3DriverPayloadExcludeKeyofS3DriverPayloadPath_9a6ecea9b7debc31")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.AnyOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>?), TypeInfoPropertyName = "APIServiceDriver_c0617c242689fb32")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Dataloop.AnyOf, global::System.Collections.Generic.List, global::System.Collections.Generic.List>, global::System.Collections.Generic.List, global::System.Collections.Generic.List, global::System.Collections.Generic.List, global::System.Collections.Generic.List, global::System.Collections.Generic.List>), TypeInfoPropertyName = "APIServiceDriver_ce74abc722e1be30")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] @@ -7146,6 +7156,7 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Dataloop.JsonConverters.SchemaEntryInputJsonConverter()); options.Converters.Add(new global::Dataloop.JsonConverters.RecipeV2InputJsonConverter()); options.Converters.Add(new global::Dataloop.JsonConverters.RecipeInputJsonConverter()); + options.Converters.Add(new global::Dataloop.JsonConverters.IntegrationTypeMetadataJsonConverter()); options.Converters.Add(new global::Dataloop.JsonConverters.ModelOutputTypeJsonConverter()); options.Converters.Add(new global::Dataloop.JsonConverters.IDateJsonConverter()); options.Converters.Add(new global::Dataloop.JsonConverters.MetricDataJsonConverter()); diff --git a/src/libs/Dataloop/Generated/Dataloop.JsonSerializerContextTypes.g.cs b/src/libs/Dataloop/Generated/Dataloop.JsonSerializerContextTypes.g.cs index 6e5bb5b..6d1ede5 100644 --- a/src/libs/Dataloop/Generated/Dataloop.JsonSerializerContextTypes.g.cs +++ b/src/libs/Dataloop/Generated/Dataloop.JsonSerializerContextTypes.g.cs @@ -2180,3583 +2180,3591 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Dataloop.IntegrationMetadataBody? Type538 { get; set; } + public global::Dataloop.IS3ApiMetadata? Type538 { get; set; } /// /// /// - public global::Dataloop.IntegrationBody? Type539 { get; set; } + public global::Dataloop.IntegrationTypeMetadata? Type539 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type540 { get; set; } + public global::Dataloop.IntegrationMetadataBody? Type540 { get; set; } /// /// /// - public global::Dataloop.IntegrationBodyCredentials? Type541 { get; set; } + public global::Dataloop.IntegrationBody? Type541 { get; set; } /// /// /// - public global::Dataloop.BillingResourceKey? Type542 { get; set; } + public global::System.Collections.Generic.IList? Type542 { get; set; } /// /// /// - public global::Dataloop.MetricGroup? Type543 { get; set; } + public global::Dataloop.IntegrationBodyCredentials? Type543 { get; set; } /// /// /// - public global::Dataloop.BillingResource? Type544 { get; set; } + public global::Dataloop.BillingResourceKey? Type544 { get; set; } /// /// /// - public global::Dataloop.Plan? Type545 { get; set; } + public global::Dataloop.MetricGroup? Type545 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type546 { get; set; } + public global::Dataloop.BillingResource? Type546 { get; set; } /// /// /// - public global::Dataloop.BillingPeriod? Type547 { get; set; } + public global::Dataloop.Plan? Type547 { get; set; } /// /// /// - public global::Dataloop.BillingStatus? Type548 { get; set; } + public global::System.Collections.Generic.IList? Type548 { get; set; } /// /// /// - public global::Dataloop.ScopeType? Type549 { get; set; } + public global::Dataloop.BillingPeriod? Type549 { get; set; } /// /// /// - public global::Dataloop.APISubscription? Type550 { get; set; } + public global::Dataloop.BillingStatus? Type550 { get; set; } /// /// /// - public global::Dataloop.APISubscriptionScope? Type551 { get; set; } + public global::Dataloop.ScopeType? Type551 { get; set; } /// /// /// - public global::Dataloop.GuestType? Type552 { get; set; } + public global::Dataloop.APISubscription? Type552 { get; set; } /// /// /// - public global::Dataloop.APIGuest? Type553 { get; set; } + public global::Dataloop.APISubscriptionScope? Type553 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type554 { get; set; } + public global::Dataloop.GuestType? Type554 { get; set; } /// /// /// - public global::Dataloop.CreateGuestPayload? Type555 { get; set; } + public global::Dataloop.APIGuest? Type555 { get; set; } /// /// /// - public global::Dataloop.CreateProjectPayload? Type556 { get; set; } + public global::Dataloop.AnyOf? Type556 { get; set; } /// /// /// - public global::Dataloop.APIMembership? Type557 { get; set; } + public global::Dataloop.CreateGuestPayload? Type557 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type558 { get; set; } + public global::Dataloop.CreateProjectPayload? Type558 { get; set; } /// /// /// - public global::Dataloop.APIMembershipRole? Type559 { get; set; } + public global::Dataloop.APIMembership? Type559 { get; set; } /// /// /// - public global::Dataloop.UserInterestType? Type560 { get; set; } + public global::Dataloop.AnyOf? Type560 { get; set; } /// /// /// - public global::Dataloop.AddMembersBatchPayload? Type561 { get; set; } + public global::Dataloop.APIMembershipRole? Type561 { get; set; } /// /// /// - public global::Dataloop.ClientContributor? Type562 { get; set; } + public global::Dataloop.UserInterestType? Type562 { get; set; } /// /// /// - public global::Dataloop.ClientContributorGuest? Type563 { get; set; } + public global::Dataloop.AddMembersBatchPayload? Type563 { get; set; } /// /// /// - public global::Dataloop.AddMemberPayload? Type564 { get; set; } + public global::Dataloop.ClientContributor? Type564 { get; set; } /// /// /// - public global::Dataloop.PatchMemberPayload? Type565 { get; set; } + public global::Dataloop.ClientContributorGuest? Type565 { get; set; } /// /// /// - public global::Dataloop.UpdateMyDetailsPayload? Type566 { get; set; } + public global::Dataloop.AddMemberPayload? Type566 { get; set; } /// /// /// - public global::Dataloop.APIHashUser? Type567 { get; set; } + public global::Dataloop.PatchMemberPayload? Type567 { get; set; } /// /// /// - public global::Dataloop.ApiKeyType? Type568 { get; set; } + public global::Dataloop.UpdateMyDetailsPayload? Type568 { get; set; } /// /// /// - public global::Dataloop.APIApiKey? Type569 { get; set; } + public global::Dataloop.APIHashUser? Type569 { get; set; } /// /// /// - public global::Dataloop.APILogin? Type570 { get; set; } + public global::Dataloop.ApiKeyType? Type570 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPILogin? Type571 { get; set; } + public global::Dataloop.APIApiKey? Type571 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type572 { get; set; } + public global::Dataloop.APILogin? Type572 { get; set; } /// /// /// - public global::Dataloop.LoginsLogQuery? Type573 { get; set; } + public global::Dataloop.CursorPageAPILogin? Type573 { get; set; } /// /// /// - public global::Dataloop.LoginsLogQueryOrder? Type574 { get; set; } + public global::System.Collections.Generic.IList? Type574 { get; set; } /// /// /// - public global::Dataloop.LoginsLogQueryOrderBy? Type575 { get; set; } + public global::Dataloop.LoginsLogQuery? Type575 { get; set; } /// /// /// - public global::Dataloop.EntityScopeLevel? Type576 { get; set; } + public global::Dataloop.LoginsLogQueryOrder? Type576 { get; set; } /// /// /// - public global::Dataloop.ModelStatus? Type577 { get; set; } + public global::Dataloop.LoginsLogQueryOrderBy? Type577 { get; set; } /// /// /// - public global::Dataloop.APIModelConfiguration? Type578 { get; set; } + public global::Dataloop.EntityScopeLevel? Type578 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type579 { get; set; } + public global::Dataloop.ModelStatus? Type579 { get; set; } /// /// /// - public global::Dataloop.ModelInputType? Type580 { get; set; } + public global::Dataloop.APIModelConfiguration? Type580 { get; set; } /// /// /// - public global::Dataloop.ModelOutputType? Type581 { get; set; } + public global::Dataloop.AnyOf? Type581 { get; set; } /// /// /// - public global::Dataloop.ModelOutputTypeVariant2? Type582 { get; set; } + public global::Dataloop.ModelInputType? Type582 { get; set; } /// /// /// - public global::Dataloop.ModelOutputTypeVariant4? Type583 { get; set; } + public global::Dataloop.ModelOutputType? Type583 { get; set; } /// /// /// - public global::Dataloop.ArtifactType? Type584 { get; set; } + public global::Dataloop.ModelOutputTypeVariant2? Type584 { get; set; } /// /// /// - public global::Dataloop.ItemArtifact? Type585 { get; set; } + public global::Dataloop.ModelOutputTypeVariant4? Type585 { get; set; } /// /// /// - public global::Dataloop.LocalArtifact? Type586 { get; set; } + public global::Dataloop.ArtifactType? Type586 { get; set; } /// /// /// - public global::Dataloop.EntityContext? Type587 { get; set; } + public global::Dataloop.ItemArtifact? Type587 { get; set; } /// /// /// - public global::Dataloop.ModelOperationMetadata? Type588 { get; set; } + public global::Dataloop.LocalArtifact? Type588 { get; set; } /// /// /// - public global::Dataloop.APIModelMetadataSubsets? Type589 { get; set; } + public global::Dataloop.EntityContext? Type589 { get; set; } /// /// /// - public global::Dataloop.APIModelMetadataAnnotationsSubsets? Type590 { get; set; } + public global::Dataloop.ModelOperationMetadata? Type590 { get; set; } /// /// /// - public global::Dataloop.ReferenceType? Type591 { get; set; } + public global::Dataloop.APIModelMetadataSubsets? Type591 { get; set; } /// /// /// - public global::Dataloop.EntityReference? Type592 { get; set; } + public global::Dataloop.APIModelMetadataAnnotationsSubsets? Type592 { get; set; } /// /// /// - public global::Dataloop.NodeMlType? Type593 { get; set; } + public global::Dataloop.ReferenceType? Type593 { get; set; } /// /// /// - public global::Dataloop.APIModelMetadataSystem? Type594 { get; set; } + public global::Dataloop.EntityReference? Type594 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type595 { get; set; } + public global::Dataloop.NodeMlType? Type595 { get; set; } /// /// /// - public global::Dataloop.APIModelMetadataSystemMlType? Type596 { get; set; } + public global::Dataloop.APIModelMetadataSystem? Type596 { get; set; } /// /// /// - public global::Dataloop.APIModelMetadataSystemCloneCommand? Type597 { get; set; } + public global::System.Collections.Generic.IList? Type597 { get; set; } /// /// /// - public global::Dataloop.APIModelMetadataSystemEmbedDatasets? Type598 { get; set; } + public global::Dataloop.APIModelMetadataSystemMlType? Type598 { get; set; } /// /// /// - public global::Dataloop.APIModelMetadataSystemReloadServices? Type599 { get; set; } + public global::Dataloop.APIModelMetadataSystemCloneCommand? Type599 { get; set; } /// /// /// - public global::Dataloop.APIModelMetadata? Type600 { get; set; } + public global::Dataloop.APIModelMetadataSystemEmbedDatasets? Type600 { get; set; } /// /// /// - public global::Dataloop.IAppDefinition? Type601 { get; set; } + public global::Dataloop.APIModelMetadataSystemReloadServices? Type601 { get; set; } /// /// /// - public global::Dataloop.ModelStatusLog? Type602 { get; set; } + public global::Dataloop.APIModelMetadata? Type602 { get; set; } /// /// /// - public global::Dataloop.APIModel? Type603 { get; set; } + public global::Dataloop.IAppDefinition? Type603 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type604 { get; set; } + public global::Dataloop.ModelStatusLog? Type604 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type605 { get; set; } + public global::Dataloop.APIModel? Type605 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type606 { get; set; } + public global::System.Collections.Generic.IList>? Type606 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPISetting? Type607 { get; set; } + public global::Dataloop.AnyOf? Type607 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type608 { get; set; } + public global::System.Collections.Generic.IList? Type608 { get; set; } /// /// /// - public global::Dataloop.CreateModelRequest? Type609 { get; set; } + public global::Dataloop.CursorPageAPISetting? Type609 { get; set; } /// /// /// - public global::Dataloop.PatchModelRequest? Type610 { get; set; } + public global::System.Collections.Generic.IList? Type610 { get; set; } /// /// /// - public global::Dataloop.ModelOperationTypes? Type611 { get; set; } + public global::Dataloop.CreateModelRequest? Type611 { get; set; } /// /// /// - public global::Dataloop.QueryModel? Type612 { get; set; } + public global::Dataloop.PatchModelRequest? Type612 { get; set; } /// /// /// - public global::Dataloop.ExecutionStatus? Type613 { get; set; } + public global::Dataloop.ModelOperationTypes? Type613 { get; set; } /// /// /// - public global::Dataloop.ExecutionStatusReport? Type614 { get; set; } + public global::Dataloop.QueryModel? Type614 { get; set; } /// /// /// - public global::Dataloop.ExecutionStatusName? Type615 { get; set; } + public global::Dataloop.ExecutionStatus? Type615 { get; set; } /// /// /// - public global::Dataloop.ExecutionPipelineStateReference? Type616 { get; set; } + public global::Dataloop.ExecutionStatusReport? Type616 { get; set; } /// /// /// - public global::Dataloop.ExecutionModel? Type617 { get; set; } + public global::Dataloop.ExecutionStatusName? Type617 { get; set; } /// /// /// - public global::Dataloop.EventResourceType? Type618 { get; set; } + public global::Dataloop.ExecutionPipelineStateReference? Type618 { get; set; } /// /// /// - public global::Dataloop.ItemStatusEvent? Type619 { get; set; } + public global::Dataloop.ExecutionModel? Type619 { get; set; } /// /// /// - public global::Dataloop.ItemStatusEventStatus? Type620 { get; set; } + public global::Dataloop.EventResourceType? Type620 { get; set; } /// /// /// - public global::Dataloop.ExecutionEventContext? Type621 { get; set; } + public global::Dataloop.ItemStatusEvent? Type621 { get; set; } /// /// /// - public global::Dataloop.ResourceType? Type622 { get; set; } + public global::Dataloop.ItemStatusEventStatus? Type622 { get; set; } /// /// /// - public global::Dataloop.IDate? Type623 { get; set; } + public global::Dataloop.ExecutionEventContext? Type623 { get; set; } /// /// /// - public global::Dataloop.JssdkDictionary? Type624 { get; set; } + public global::Dataloop.ResourceType? Type624 { get; set; } /// /// /// - public global::Dataloop.Execution? Type625 { get; set; } + public global::Dataloop.IDate? Type625 { get; set; } /// /// /// - public global::Dataloop.ExecutionFeedbackQueue? Type626 { get; set; } + public global::Dataloop.JssdkDictionary? Type626 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type627 { get; set; } + public global::Dataloop.Execution? Type627 { get; set; } /// /// /// - public global::Dataloop.ExecutionPipeline? Type628 { get; set; } + public global::Dataloop.ExecutionFeedbackQueue? Type628 { get; set; } /// /// /// - public global::Dataloop.AuthZBlockExecutionContext? Type629 { get; set; } + public global::System.Collections.Generic.IList? Type629 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type630 { get; set; } + public global::Dataloop.ExecutionPipeline? Type630 { get; set; } /// /// /// - public global::Dataloop.ExecutionResource? Type631 { get; set; } + public global::Dataloop.AuthZBlockExecutionContext? Type631 { get; set; } /// /// /// - public global::Dataloop.ExecutionMode? Type632 { get; set; } + public global::System.Collections.Generic.IList? Type632 { get; set; } /// /// /// - public global::Dataloop.ExecutionSyncReplyTo? Type633 { get; set; } + public global::Dataloop.ExecutionResource? Type633 { get; set; } /// /// /// - public global::Dataloop.ExecutionHook? Type634 { get; set; } + public global::Dataloop.ExecutionMode? Type634 { get; set; } /// /// /// - public global::Dataloop.ExecutionPhase? Type635 { get; set; } + public global::Dataloop.ExecutionSyncReplyTo? Type635 { get; set; } /// /// /// - public global::Dataloop.OnResetAction? Type636 { get; set; } + public global::Dataloop.ExecutionHook? Type636 { get; set; } /// /// /// - public global::Dataloop.PartialAPIEmbedDatasetsSpec? Type637 { get; set; } + public global::Dataloop.ExecutionPhase? Type637 { get; set; } /// /// /// - public global::Dataloop.PartialAPIEmbedDatasetsSpecConfig? Type638 { get; set; } + public global::Dataloop.OnResetAction? Type638 { get; set; } /// /// /// - public global::Dataloop.PartialCreateModelRequest? Type639 { get; set; } + public global::Dataloop.PartialAPIEmbedDatasetsSpec? Type639 { get; set; } /// /// /// - public global::Dataloop.APICopyEnvironmentSpec? Type640 { get; set; } + public global::Dataloop.PartialAPIEmbedDatasetsSpecConfig? Type640 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type641 { get; set; } + public global::Dataloop.PartialCreateModelRequest? Type641 { get; set; } /// /// /// - public global::Dataloop.ModelJoinMap2? Type642 { get; set; } + public global::Dataloop.APICopyEnvironmentSpec? Type642 { get; set; } /// /// /// - public global::Dataloop.PrecisionRecallInputRequest? Type643 { get; set; } + public global::System.Collections.Generic.Dictionary? Type643 { get; set; } /// /// /// - public global::Dataloop.Error? Type644 { get; set; } + public global::Dataloop.ModelJoinMap2? Type644 { get; set; } /// /// /// - public global::Dataloop.LineData? Type645 { get; set; } + public global::Dataloop.PrecisionRecallInputRequest? Type645 { get; set; } /// /// /// - public global::Dataloop.MatrixData? Type646 { get; set; } + public global::Dataloop.Error? Type646 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type647 { get; set; } + public global::Dataloop.LineData? Type647 { get; set; } /// /// /// - public global::Dataloop.SummaryData? Type648 { get; set; } + public global::Dataloop.MatrixData? Type648 { get; set; } /// /// /// - public global::Dataloop.MetricData? Type649 { get; set; } + public global::System.Collections.Generic.IList>? Type649 { get; set; } /// /// /// - public global::Dataloop.MetricRequest? Type650 { get; set; } + public global::Dataloop.SummaryData? Type650 { get; set; } /// /// /// - public global::Dataloop.PrivateRegistry? Type651 { get; set; } + public global::Dataloop.MetricData? Type651 { get; set; } /// /// /// - public global::Dataloop.ServiceDriver? Type652 { get; set; } + public global::Dataloop.MetricRequest? Type652 { get; set; } /// /// /// - public global::Dataloop.AutoscalersDriverZombies? Type653 { get; set; } + public global::Dataloop.PrivateRegistry? Type653 { get; set; } /// /// /// - public global::Dataloop.APIWebHook? Type654 { get; set; } + public global::Dataloop.ServiceDriver? Type654 { get; set; } /// /// /// - public global::Dataloop.WebHooksPage? Type655 { get; set; } + public global::Dataloop.AutoscalersDriverZombies? Type655 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type656 { get; set; } + public global::Dataloop.APIWebHook? Type656 { get; set; } /// /// /// - public global::Dataloop.CreateWebHookDTO? Type657 { get; set; } + public global::Dataloop.WebHooksPage? Type657 { get; set; } /// /// /// - public global::Dataloop.CreateWebHookDTOHttpMethod? Type658 { get; set; } + public global::System.Collections.Generic.IList? Type658 { get; set; } /// /// /// - public global::Dataloop.UpdateWebHookDTO? Type659 { get; set; } + public global::Dataloop.CreateWebHookDTO? Type659 { get; set; } /// /// /// - public global::Dataloop.UpdateWebHookDTOHttpMethod? Type660 { get; set; } + public global::Dataloop.CreateWebHookDTOHttpMethod? Type660 { get; set; } /// /// /// - public global::Dataloop.ServiceRuntime? Type661 { get; set; } + public global::Dataloop.UpdateWebHookDTO? Type661 { get; set; } /// /// /// - public global::Dataloop.ServiceVersions? Type662 { get; set; } + public global::Dataloop.UpdateWebHookDTOHttpMethod? Type662 { get; set; } /// /// /// - public global::Dataloop.Panel? Type663 { get; set; } + public global::Dataloop.ServiceRuntime? Type663 { get; set; } /// /// /// - public global::Dataloop.IServiceAppConfig? Type664 { get; set; } + public global::Dataloop.ServiceVersions? Type664 { get; set; } /// /// /// - public global::Dataloop.ServiceType? Type665 { get; set; } + public global::Dataloop.Panel? Type665 { get; set; } /// /// /// - public global::Dataloop.CrashloopAction? Type666 { get; set; } + public global::Dataloop.IServiceAppConfig? Type666 { get; set; } /// /// /// - public global::Dataloop.CrashloopReason? Type667 { get; set; } + public global::Dataloop.ServiceType? Type667 { get; set; } /// /// /// - public global::Dataloop.Crashloop? Type668 { get; set; } + public global::Dataloop.CrashloopAction? Type668 { get; set; } /// /// /// - public global::Dataloop.ServiceModeType? Type669 { get; set; } + public global::Dataloop.CrashloopReason? Type669 { get; set; } /// /// /// - public global::Dataloop.ServiceMode? Type670 { get; set; } + public global::Dataloop.Crashloop? Type670 { get; set; } /// /// /// - public global::Dataloop.EComputeConsumptionMethod? Type671 { get; set; } + public global::Dataloop.ServiceModeType? Type671 { get; set; } /// /// /// - public global::Dataloop.SystemRefs? Type672 { get; set; } + public global::Dataloop.ServiceMode? Type672 { get; set; } /// /// /// - public global::Dataloop.ServiceMetadata? Type673 { get; set; } + public global::Dataloop.EComputeConsumptionMethod? Type673 { get; set; } /// /// /// - public global::Dataloop.AllOf? Type674 { get; set; } + public global::Dataloop.SystemRefs? Type674 { get; set; } /// /// /// - public global::Dataloop.ServiceMetadataUser? Type675 { get; set; } + public global::Dataloop.ServiceMetadata? Type675 { get; set; } /// /// /// - public global::Dataloop.ServiceMetadataMl? Type676 { get; set; } + public global::Dataloop.AllOf? Type676 { get; set; } /// /// /// - public global::Dataloop.AllOf? Type677 { get; set; } + public global::Dataloop.ServiceMetadataUser? Type677 { get; set; } /// /// /// - public global::Dataloop.ServiceMetadataSystem? Type678 { get; set; } + public global::Dataloop.ServiceMetadataMl? Type678 { get; set; } /// /// /// - public global::Dataloop.IServiceGeneralSettings? Type679 { get; set; } + public global::Dataloop.AllOf? Type679 { get; set; } /// /// /// - public global::Dataloop.ServiceIntegration? Type680 { get; set; } + public global::Dataloop.ServiceMetadataSystem? Type680 { get; set; } /// /// /// - public global::Dataloop.APIService? Type681 { get; set; } + public global::Dataloop.IServiceGeneralSettings? Type681 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type682 { get; set; } + public global::Dataloop.ServiceIntegration? Type682 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type683 { get; set; } + public global::Dataloop.APIService? Type683 { get; set; } /// /// /// - public global::Dataloop.PackageResourceType? Type684 { get; set; } + public global::System.Collections.Generic.IList? Type684 { get; set; } /// /// /// - public global::Dataloop.ExecutionHookValueFrom? Type685 { get; set; } + public global::System.Collections.Generic.IList? Type685 { get; set; } /// /// /// - public global::Dataloop.ExecutionHookType? Type686 { get; set; } + public global::Dataloop.PackageResourceType? Type686 { get; set; } /// /// /// - public global::Dataloop.PackageIO? Type687 { get; set; } + public global::Dataloop.ExecutionHookValueFrom? Type687 { get; set; } /// /// /// - public global::Dataloop.PackageIOIntegration? Type688 { get; set; } + public global::Dataloop.ExecutionHookType? Type688 { get; set; } /// /// /// - public global::Dataloop.UiBindingResource? Type689 { get; set; } + public global::Dataloop.PackageIO? Type689 { get; set; } /// /// /// - public global::Dataloop.UiBindingPanel? Type690 { get; set; } + public global::Dataloop.PackageIOIntegration? Type690 { get; set; } /// /// /// - public global::Dataloop.DisplayScope? Type691 { get; set; } + public global::Dataloop.UiBindingResource? Type691 { get; set; } /// /// /// - public global::Dataloop.ExecutionPostActionType? Type692 { get; set; } + public global::Dataloop.UiBindingPanel? Type692 { get; set; } /// /// /// - public global::Dataloop.ExecutionPostAction? Type693 { get; set; } + public global::Dataloop.DisplayScope? Type693 { get; set; } /// /// /// - public global::Dataloop.DLFunctionDefaultInputSpec? Type694 { get; set; } + public global::Dataloop.ExecutionPostActionType? Type694 { get; set; } /// /// /// - public global::Dataloop.DLFunctionInputOptionsSpec? Type695 { get; set; } + public global::Dataloop.ExecutionPostAction? Type695 { get; set; } /// /// /// - public global::Dataloop.DLFunction? Type696 { get; set; } + public global::Dataloop.DLFunctionDefaultInputSpec? Type696 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type697 { get; set; } + public global::Dataloop.DLFunctionInputOptionsSpec? Type697 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type698 { get; set; } + public global::Dataloop.DLFunction? Type698 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type699 { get; set; } + public global::System.Collections.Generic.IList? Type699 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type700 { get; set; } + public global::System.Collections.Generic.IList? Type700 { get; set; } /// /// /// - public global::Dataloop.IPipelineExecution? Type701 { get; set; } + public global::System.Collections.Generic.IList? Type701 { get; set; } /// /// /// - public global::Dataloop.APIExecution? Type702 { get; set; } + public global::System.Collections.Generic.IList? Type702 { get; set; } /// /// /// - public global::Dataloop.APIExecutionSyncReplyTo? Type703 { get; set; } + public global::Dataloop.IPipelineExecution? Type703 { get; set; } /// /// /// - public global::Dataloop.UiSlot? Type704 { get; set; } + public global::Dataloop.APIExecution? Type704 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type705 { get; set; } + public global::Dataloop.APIExecutionSyncReplyTo? Type705 { get; set; } /// /// /// - public global::Dataloop.ActivitiesDescriptor2? Type706 { get; set; } + public global::Dataloop.UiSlot? Type706 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type707 { get; set; } + public global::System.Collections.Generic.Dictionary? Type707 { get; set; } /// /// /// - public global::Dataloop.ActivitiesDescriptorFunctions2? Type708 { get; set; } + public global::Dataloop.ActivitiesDescriptor2? Type708 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type709 { get; set; } + public global::System.Collections.Generic.Dictionary? Type709 { get; set; } /// /// /// - public global::Dataloop.TriggerType? Type710 { get; set; } + public global::Dataloop.ActivitiesDescriptorFunctions2? Type710 { get; set; } /// /// /// - public global::Dataloop.EntityReferenceMetadata? Type711 { get; set; } + public global::System.Collections.Generic.IList? Type711 { get; set; } /// /// /// - public global::Dataloop.APITrigger? Type712 { get; set; } + public global::Dataloop.TriggerType? Type712 { get; set; } /// /// /// - public global::Dataloop.TriggersPage? Type713 { get; set; } + public global::Dataloop.EntityReferenceMetadata? Type713 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type714 { get; set; } + public global::Dataloop.APITrigger? Type714 { get; set; } /// /// /// - public global::Dataloop.CreateTriggerRequest? Type715 { get; set; } + public global::Dataloop.TriggersPage? Type715 { get; set; } /// /// /// - public global::Dataloop.TriggerResourceInformationItem? Type716 { get; set; } + public global::System.Collections.Generic.IList? Type716 { get; set; } /// /// /// - public global::Dataloop.TriggerResourceInformationPage? Type717 { get; set; } + public global::Dataloop.CreateTriggerRequest? Type717 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type718 { get; set; } + public global::Dataloop.TriggerResourceInformationItem? Type718 { get; set; } /// /// /// - public global::Dataloop.TriggerResourceInformationQuery? Type719 { get; set; } + public global::Dataloop.TriggerResourceInformationPage? Type719 { get; set; } /// /// /// - public global::Dataloop.AgentNotificationPayload? Type720 { get; set; } + public global::System.Collections.Generic.IList? Type720 { get; set; } /// /// /// - public global::Dataloop.AgentNotificationPayloadAgentInfo? Type721 { get; set; } + public global::Dataloop.TriggerResourceInformationQuery? Type721 { get; set; } /// /// /// - public global::Dataloop.ECacheMode? Type722 { get; set; } + public global::Dataloop.AgentNotificationPayload? Type722 { get; set; } /// /// /// - public global::Dataloop.FaaSCacheSize? Type723 { get; set; } + public global::Dataloop.AgentNotificationPayloadAgentInfo? Type723 { get; set; } /// /// /// - public global::Dataloop.FaaSCacheType? Type724 { get; set; } + public global::Dataloop.ECacheMode? Type724 { get; set; } /// /// /// - public global::Dataloop.ICacheRunner? Type725 { get; set; } + public global::Dataloop.FaaSCacheSize? Type725 { get; set; } /// /// /// - public global::Dataloop.ICacheOptions? Type726 { get; set; } + public global::Dataloop.FaaSCacheType? Type726 { get; set; } /// /// /// - public global::Dataloop.ICacheOptionsOrg? Type727 { get; set; } + public global::Dataloop.ICacheRunner? Type727 { get; set; } /// /// /// - public global::Dataloop.ServicesPage? Type728 { get; set; } + public global::Dataloop.ICacheOptions? Type728 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type729 { get; set; } + public global::Dataloop.ICacheOptionsOrg? Type729 { get; set; } /// /// /// - public global::Dataloop.APIServicePatch? Type730 { get; set; } + public global::Dataloop.ServicesPage? Type730 { get; set; } /// /// /// - public global::Dataloop.ServiceLogLevel? Type731 { get; set; } + public global::System.Collections.Generic.IList? Type731 { get; set; } /// /// /// - public global::Dataloop.ServiceLogEntry? Type732 { get; set; } + public global::Dataloop.APIServicePatch? Type732 { get; set; } /// /// /// - public global::Dataloop.ServiceLogsPage? Type733 { get; set; } + public global::Dataloop.ServiceLogLevel? Type733 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type734 { get; set; } + public global::Dataloop.ServiceLogEntry? Type734 { get; set; } /// /// /// - public global::Dataloop.LogsListDirection? Type735 { get; set; } + public global::Dataloop.ServiceLogsPage? Type735 { get; set; } /// /// /// - public global::Dataloop.LogQuery? Type736 { get; set; } + public global::System.Collections.Generic.IList? Type736 { get; set; } /// /// /// - public global::Dataloop.ReplicaStatus? Type737 { get; set; } + public global::Dataloop.LogsListDirection? Type737 { get; set; } /// /// /// - public global::Dataloop.APIReplicaStatusUpdate? Type738 { get; set; } + public global::Dataloop.LogQuery? Type738 { get; set; } /// /// /// - public global::Dataloop.ReplicaReason? Type739 { get; set; } + public global::Dataloop.ReplicaStatus? Type739 { get; set; } /// /// /// - public global::Dataloop.ServiceRuntimeStatus? Type740 { get; set; } + public global::Dataloop.APIReplicaStatusUpdate? Type740 { get; set; } /// /// /// - public global::Dataloop.APIServiceStatus? Type741 { get; set; } + public global::Dataloop.ReplicaReason? Type741 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type742 { get; set; } + public global::Dataloop.ServiceRuntimeStatus? Type742 { get; set; } /// /// /// - public global::Dataloop.EDebugOptionsStatus? Type743 { get; set; } + public global::Dataloop.APIServiceStatus? Type743 { get; set; } /// /// /// - public global::Dataloop.DebugSession? Type744 { get; set; } + public global::System.Collections.Generic.IList? Type744 { get; set; } /// /// /// - public global::Dataloop.ReportType? Type745 { get; set; } + public global::Dataloop.EDebugOptionsStatus? Type745 { get; set; } /// /// /// - public global::Dataloop.BaseReportMessage? Type746 { get; set; } + public global::Dataloop.DebugSession? Type746 { get; set; } /// /// /// - public global::Dataloop.IServiceScaler? Type747 { get; set; } + public global::Dataloop.ReportType? Type747 { get; set; } /// /// /// - public global::Dataloop.ServiceDriverType? Type748 { get; set; } + public global::Dataloop.BaseReportMessage? Type748 { get; set; } /// /// /// - public global::Dataloop.IComputeContext? Type749 { get; set; } + public global::Dataloop.IServiceScaler? Type749 { get; set; } /// /// /// - public global::Dataloop.DataloopPodType? Type750 { get; set; } + public global::Dataloop.ServiceDriverType? Type750 { get; set; } /// /// /// - public global::Dataloop.DriverCondition? Type751 { get; set; } + public global::Dataloop.IComputeContext? Type751 { get; set; } /// /// /// - public global::Dataloop.DriverToleration? Type752 { get; set; } + public global::Dataloop.DataloopPodType? Type752 { get; set; } /// /// /// - public global::Dataloop.DriverTolerationConditions? Type753 { get; set; } + public global::Dataloop.DriverCondition? Type753 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type754 { get; set; } + public global::Dataloop.DriverToleration? Type754 { get; set; } /// /// /// - public global::Dataloop.DriverNodeSelector? Type755 { get; set; } + public global::Dataloop.DriverTolerationConditions? Type755 { get; set; } /// /// /// - public global::Dataloop.DriverNodeSelectorConditions? Type756 { get; set; } + public global::System.Collections.Generic.IList? Type756 { get; set; } /// /// /// - public global::Dataloop.CacheRunner? Type757 { get; set; } + public global::Dataloop.DriverNodeSelector? Type757 { get; set; } /// /// /// - public global::Dataloop.ComputeMetadata? Type758 { get; set; } + public global::Dataloop.DriverNodeSelectorConditions? Type758 { get; set; } /// /// /// - public global::Dataloop.ComputeMetadataVariant2? Type759 { get; set; } + public global::Dataloop.CacheRunner? Type759 { get; set; } /// /// /// - public global::Dataloop.ComputeMetadataVariant2ServeAgentGateway? Type760 { get; set; } + public global::Dataloop.ComputeMetadata? Type760 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type761 { get; set; } + public global::Dataloop.ComputeMetadataVariant2? Type761 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type762 { get; set; } + public global::Dataloop.ComputeMetadataVariant2ServeAgentGateway? Type762 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type763 { get; set; } + public global::System.Collections.Generic.IList? Type763 { get; set; } /// /// /// - public global::Dataloop.APIServiceDriver? Type764 { get; set; } + public global::System.Collections.Generic.IList? Type764 { get; set; } /// /// /// - public global::Dataloop.CompositionElementStatus? Type765 { get; set; } + public global::System.Collections.Generic.IList? Type765 { get; set; } /// /// /// - public global::Dataloop.APIServiceCompositionElement? Type766 { get; set; } + public global::Dataloop.APIServiceDriver? Type766 { get; set; } /// /// /// - public global::Dataloop.APIServiceCompositionElementState? Type767 { get; set; } + public global::Dataloop.CompositionElementStatus? Type767 { get; set; } /// /// /// - public global::Dataloop.CompositionStatus? Type768 { get; set; } + public global::Dataloop.APIServiceCompositionElement? Type768 { get; set; } /// /// /// - public global::Dataloop.ICompositionError? Type769 { get; set; } + public global::Dataloop.APIServiceCompositionElementState? Type769 { get; set; } /// /// /// - public global::Dataloop.ICompositionErrorContext? Type770 { get; set; } + public global::Dataloop.CompositionStatus? Type770 { get; set; } /// /// /// - public global::Dataloop.TriggerResourceType? Type771 { get; set; } + public global::Dataloop.ICompositionError? Type771 { get; set; } /// /// /// - public global::Dataloop.TriggerActionType? Type772 { get; set; } + public global::Dataloop.ICompositionErrorContext? Type772 { get; set; } /// /// /// - public global::Dataloop.TriggerOperationType? Type773 { get; set; } + public global::Dataloop.TriggerResourceType? Type773 { get; set; } /// /// /// - public global::Dataloop.TriggerOperation? Type774 { get; set; } + public global::Dataloop.TriggerActionType? Type774 { get; set; } /// /// /// - public global::Dataloop.ICompositionTrigger? Type775 { get; set; } + public global::Dataloop.TriggerOperationType? Type775 { get; set; } /// /// /// - public global::Dataloop.ICompositionTriggerSpec? Type776 { get; set; } + public global::Dataloop.TriggerOperation? Type776 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type777 { get; set; } + public global::Dataloop.ICompositionTrigger? Type777 { get; set; } /// /// /// - public global::Dataloop.ECompositionPackageStatus? Type778 { get; set; } + public global::Dataloop.ICompositionTriggerSpec? Type778 { get; set; } /// /// /// - public global::Dataloop.PartialModule? Type779 { get; set; } + public global::System.Collections.Generic.IList? Type779 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type780 { get; set; } + public global::Dataloop.ECompositionPackageStatus? Type780 { get; set; } /// /// /// - public global::Dataloop.PackageConfigType? Type781 { get; set; } + public global::Dataloop.PartialModule? Type781 { get; set; } /// /// /// - public global::Dataloop.PackageRequirementOperator? Type782 { get; set; } + public global::System.Collections.Generic.IList? Type782 { get; set; } /// /// /// - public global::Dataloop.PackageRequirement? Type783 { get; set; } + public global::Dataloop.PackageConfigType? Type783 { get; set; } /// /// /// - public global::Dataloop.CodebaseType? Type784 { get; set; } + public global::Dataloop.PackageRequirementOperator? Type784 { get; set; } /// /// /// - public global::Dataloop.Codebase? Type785 { get; set; } + public global::Dataloop.PackageRequirement? Type785 { get; set; } /// /// /// - public global::Dataloop.ICompositionPackage? Type786 { get; set; } + public global::Dataloop.CodebaseType? Type786 { get; set; } /// /// /// - public global::Dataloop.ICompositionPackageState? Type787 { get; set; } + public global::Dataloop.Codebase? Type787 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type788 { get; set; } + public global::Dataloop.ICompositionPackage? Type788 { get; set; } /// /// /// - public global::Dataloop.ICompositionTask? Type789 { get; set; } + public global::Dataloop.ICompositionPackageState? Type789 { get; set; } /// /// /// - public global::Dataloop.ICompositionTaskState? Type790 { get; set; } + public global::System.Collections.Generic.IList? Type790 { get; set; } /// /// /// - public global::Dataloop.ModelConfiguration? Type791 { get; set; } + public global::Dataloop.ICompositionTask? Type791 { get; set; } /// /// /// - public global::Dataloop.IModel? Type792 { get; set; } + public global::Dataloop.ICompositionTaskState? Type792 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type793 { get; set; } + public global::Dataloop.ModelConfiguration? Type793 { get; set; } /// /// /// - public global::Dataloop.ICompositionElementState? Type794 { get; set; } + public global::Dataloop.IModel? Type794 { get; set; } /// /// /// - public global::Dataloop.ServiceConfig? Type795 { get; set; } + public global::System.Collections.Generic.IList? Type795 { get; set; } /// /// /// - public global::Dataloop.APICompositionModel? Type796 { get; set; } + public global::Dataloop.ICompositionElementState? Type796 { get; set; } /// /// /// - public global::Dataloop.ChannelType? Type797 { get; set; } + public global::Dataloop.ServiceConfig? Type797 { get; set; } /// /// /// - public global::Dataloop.CompositionChannelStatus? Type798 { get; set; } + public global::Dataloop.APICompositionModel? Type798 { get; set; } /// /// /// - public global::Dataloop.NotificationEntityContext? Type799 { get; set; } + public global::Dataloop.ChannelType? Type799 { get; set; } /// /// /// - public global::Dataloop.FilterTarget? Type800 { get; set; } + public global::Dataloop.CompositionChannelStatus? Type800 { get; set; } /// /// /// - public global::Dataloop.NotificationEventContext? Type801 { get; set; } + public global::Dataloop.NotificationEntityContext? Type801 { get; set; } /// /// /// - public global::Dataloop.ICompositionFilter? Type802 { get; set; } + public global::Dataloop.FilterTarget? Type802 { get; set; } /// /// /// - public global::Dataloop.ICompositionFilterState? Type803 { get; set; } + public global::Dataloop.NotificationEventContext? Type803 { get; set; } /// /// /// - public global::Dataloop.ICompositionChannel? Type804 { get; set; } + public global::Dataloop.ICompositionFilter? Type804 { get; set; } /// /// /// - public global::Dataloop.ICompositionChannelMetadata? Type805 { get; set; } + public global::Dataloop.ICompositionFilterState? Type805 { get; set; } /// /// /// - public global::Dataloop.ICompositionChannelState? Type806 { get; set; } + public global::Dataloop.ICompositionChannel? Type806 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type807 { get; set; } + public global::Dataloop.ICompositionChannelMetadata? Type807 { get; set; } /// /// /// - public global::Dataloop.TemplateKind? Type808 { get; set; } + public global::Dataloop.ICompositionChannelState? Type808 { get; set; } /// /// /// - public global::Dataloop.INodeConfig? Type809 { get; set; } + public global::System.Collections.Generic.IList? Type809 { get; set; } /// /// /// - public global::Dataloop.INodeConfigPackage? Type810 { get; set; } + public global::Dataloop.TemplateKind? Type810 { get; set; } /// /// /// - public global::Dataloop.NodeNamespace? Type811 { get; set; } + public global::Dataloop.INodeConfig? Type811 { get; set; } /// /// /// - public global::Dataloop.PortIO? Type812 { get; set; } + public global::Dataloop.INodeConfigPackage? Type812 { get; set; } /// /// /// - public global::Dataloop.NodeType? Type813 { get; set; } + public global::Dataloop.NodeNamespace? Type813 { get; set; } /// /// /// - public global::Dataloop.PipelineNodeDescriptor? Type814 { get; set; } + public global::Dataloop.PortIO? Type814 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type815 { get; set; } + public global::Dataloop.NodeType? Type815 { get; set; } /// /// /// - public global::Dataloop.PipelineNodeSource? Type816 { get; set; } + public global::Dataloop.PipelineNodeDescriptor? Type816 { get; set; } /// /// /// - public global::Dataloop.PipelineNodeTarget? Type817 { get; set; } + public global::System.Collections.Generic.IList? Type817 { get; set; } /// /// /// - public global::Dataloop.PipelineConnection? Type818 { get; set; } + public global::Dataloop.PipelineNodeSource? Type818 { get; set; } /// /// /// - public global::Dataloop.StartNodeType? Type819 { get; set; } + public global::Dataloop.PipelineNodeTarget? Type819 { get; set; } /// /// /// - public global::Dataloop.ITriggerSpec? Type820 { get; set; } + public global::Dataloop.PipelineConnection? Type820 { get; set; } /// /// /// - public global::Dataloop.ITriggerSpecSpec? Type821 { get; set; } + public global::Dataloop.StartNodeType? Type821 { get; set; } /// /// /// - public global::Dataloop.IStartNode? Type822 { get; set; } + public global::Dataloop.ITriggerSpec? Type822 { get; set; } /// /// /// - public global::Dataloop.ResumePipelineOption? Type823 { get; set; } + public global::Dataloop.ITriggerSpecSpec? Type823 { get; set; } /// /// /// - public global::Dataloop.IPipelineSettings? Type824 { get; set; } + public global::Dataloop.IStartNode? Type824 { get; set; } /// /// /// - public global::Dataloop.IPipelineSettingsLastUpdate? Type825 { get; set; } + public global::Dataloop.ResumePipelineOption? Type825 { get; set; } /// /// /// - public global::Dataloop.PipelineVariable? Type826 { get; set; } + public global::Dataloop.IPipelineSettings? Type826 { get; set; } /// /// /// - public global::Dataloop.PipelineFromTemplateState? Type827 { get; set; } + public global::Dataloop.IPipelineSettingsLastUpdate? Type827 { get; set; } /// /// /// - public global::Dataloop.ICompositionPipelineTemplate? Type828 { get; set; } + public global::Dataloop.PipelineVariable? Type828 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type829 { get; set; } + public global::Dataloop.PipelineFromTemplateState? Type829 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type830 { get; set; } + public global::Dataloop.ICompositionPipelineTemplate? Type830 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type831 { get; set; } + public global::System.Collections.Generic.IList? Type831 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type832 { get; set; } + public global::System.Collections.Generic.IList? Type832 { get; set; } /// /// /// - public global::Dataloop.ICompositionPipelineTemplateTemplate? Type833 { get; set; } + public global::System.Collections.Generic.IList? Type833 { get; set; } /// /// /// - public global::Dataloop.ICompositionPipelineTemplateState? Type834 { get; set; } + public global::System.Collections.Generic.IList? Type834 { get; set; } /// /// /// - public global::Dataloop.ICompositionDatasetState? Type835 { get; set; } + public global::Dataloop.ICompositionPipelineTemplateTemplate? Type835 { get; set; } /// /// /// - public global::Dataloop.ICompositionDatasetStateDataset? Type836 { get; set; } + public global::Dataloop.ICompositionPipelineTemplateState? Type836 { get; set; } /// /// /// - public global::Dataloop.ICompositionDatasetStateDatasetIndexDriver? Type837 { get; set; } + public global::Dataloop.ICompositionDatasetState? Type837 { get; set; } /// /// /// - public global::Dataloop.ICompositionDatasetStateDatasetShareLevel? Type838 { get; set; } + public global::Dataloop.ICompositionDatasetStateDataset? Type838 { get; set; } /// /// /// - public global::Dataloop.ICompositionDatasetStateDatasetExport? Type839 { get; set; } + public global::Dataloop.ICompositionDatasetStateDatasetIndexDriver? Type839 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type840 { get; set; } + public global::Dataloop.ICompositionDatasetStateDatasetShareLevel? Type840 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type841 { get; set; } + public global::Dataloop.ICompositionDatasetStateDatasetExport? Type841 { get; set; } /// /// /// - public global::Dataloop.ICompositionDatasetStateDatasetAnnotation? Type842 { get; set; } + public global::System.Collections.Generic.Dictionary? Type842 { get; set; } /// /// /// - public global::Dataloop.TextSearch? Type843 { get; set; } + public global::System.Collections.Generic.IList? Type843 { get; set; } /// /// /// - public global::Dataloop.MqDetails? Type844 { get; set; } + public global::Dataloop.ICompositionDatasetStateDatasetAnnotation? Type844 { get; set; } /// /// /// - public global::Dataloop.ServiceContext? Type845 { get; set; } + public global::Dataloop.TextSearch? Type845 { get; set; } /// /// /// - public global::Dataloop.AuthZBlockServiceContext? Type846 { get; set; } + public global::Dataloop.MqDetails? Type846 { get; set; } /// /// /// - public global::Dataloop.AllOf? Type847 { get; set; } + public global::Dataloop.ServiceContext? Type847 { get; set; } /// /// /// - public global::Dataloop.PartialService? Type848 { get; set; } + public global::Dataloop.AuthZBlockServiceContext? Type848 { get; set; } /// /// /// - public global::Dataloop.DpkDatasetOntologyType? Type849 { get; set; } + public global::Dataloop.AllOf? Type849 { get; set; } /// /// /// - public global::Dataloop.ICompositionDataset? Type850 { get; set; } + public global::Dataloop.PartialService? Type850 { get; set; } /// /// /// - public global::Dataloop.ICompositionDatasetOntology? Type851 { get; set; } + public global::Dataloop.DpkDatasetOntologyType? Type851 { get; set; } /// /// /// - public global::Dataloop.ICompositionDatasetInvoke? Type852 { get; set; } + public global::Dataloop.ICompositionDataset? Type852 { get; set; } /// /// /// - public global::Dataloop.APIComposition? Type853 { get; set; } + public global::Dataloop.ICompositionDatasetOntology? Type853 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type854 { get; set; } + public global::Dataloop.ICompositionDatasetInvoke? Type854 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type855 { get; set; } + public global::Dataloop.APIComposition? Type855 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type856 { get; set; } + public global::System.Collections.Generic.IList? Type856 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type857 { get; set; } + public global::Dataloop.AnyOf? Type857 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type858 { get; set; } + public global::System.Collections.Generic.IList? Type858 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type859 { get; set; } + public global::System.Collections.Generic.IList? Type859 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type860 { get; set; } + public global::System.Collections.Generic.IList? Type860 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type861 { get; set; } + public global::System.Collections.Generic.IList? Type861 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type862 { get; set; } + public global::System.Collections.Generic.IList? Type862 { get; set; } /// /// /// - public global::Dataloop.APIPipeline? Type863 { get; set; } + public global::System.Collections.Generic.IList? Type863 { get; set; } /// /// /// - public global::Dataloop.APIPipelineTemplate? Type864 { get; set; } + public global::System.Collections.Generic.IList? Type864 { get; set; } /// /// /// - public global::Dataloop.ExecutionContext? Type865 { get; set; } + public global::Dataloop.APIPipeline? Type865 { get; set; } /// /// /// - public global::Dataloop.AllOf? Type866 { get; set; } + public global::Dataloop.APIPipelineTemplate? Type866 { get; set; } /// /// /// - public global::Dataloop.PartialExecution? Type867 { get; set; } + public global::Dataloop.ExecutionContext? Type867 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type868 { get; set; } + public global::Dataloop.AllOf? Type868 { get; set; } /// /// /// - public global::Dataloop.PartialExecutionSyncReplyTo? Type869 { get; set; } + public global::Dataloop.PartialExecution? Type869 { get; set; } /// /// /// - public global::Dataloop.ENodeStatus? Type870 { get; set; } + public global::Dataloop.AnyOf? Type870 { get; set; } /// /// /// - public global::Dataloop.IPipelineNodeState? Type871 { get; set; } + public global::Dataloop.PartialExecutionSyncReplyTo? Type871 { get; set; } /// /// /// - public global::Dataloop.EPipelineStatus? Type872 { get; set; } + public global::Dataloop.ENodeStatus? Type872 { get; set; } /// /// /// - public global::Dataloop.INodeTransitionError? Type873 { get; set; } + public global::Dataloop.IPipelineNodeState? Type873 { get; set; } /// /// /// - public global::Dataloop.APIPipelineState? Type874 { get; set; } + public global::Dataloop.EPipelineStatus? Type874 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? Type875 { get; set; } + public global::Dataloop.INodeTransitionError? Type875 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type876 { get; set; } + public global::Dataloop.APIPipelineState? Type876 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type877 { get; set; } + public global::System.Collections.Generic.Dictionary>? Type877 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type878 { get; set; } + public global::System.Collections.Generic.IList? Type878 { get; set; } /// /// /// - public global::Dataloop.IPipelineState? Type879 { get; set; } + public global::System.Collections.Generic.IList? Type879 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type880 { get; set; } + public global::System.Collections.Generic.IList? Type880 { get; set; } /// /// /// - public global::Dataloop.ResourceExecution? Type881 { get; set; } + public global::Dataloop.IPipelineState? Type881 { get; set; } /// /// /// - public global::Dataloop.EDpkScope? Type882 { get; set; } + public global::Dataloop.AnyOf>? Type882 { get; set; } /// /// /// - public global::Dataloop.IDpkMetadata? Type883 { get; set; } + public global::Dataloop.ResourceExecution? Type883 { get; set; } /// /// /// - public global::Dataloop.IDpkMetadataCommands? Type884 { get; set; } + public global::Dataloop.EDpkScope? Type884 { get; set; } /// /// /// - public global::Dataloop.IAppContext? Type885 { get; set; } + public global::Dataloop.IDpkMetadata? Type885 { get; set; } /// /// /// - public global::Dataloop.IDpkInitialContext? Type886 { get; set; } + public global::Dataloop.IDpkMetadataCommands? Type886 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentPanel? Type887 { get; set; } + public global::Dataloop.IAppContext? Type887 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type888 { get; set; } + public global::Dataloop.IDpkInitialContext? Type888 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentPanelSupportedSlot? Type889 { get; set; } + public global::Dataloop.IDpkComponentPanel? Type889 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentModel? Type890 { get; set; } + public global::System.Collections.Generic.IList? Type890 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentModelComputeConfigs? Type891 { get; set; } + public global::Dataloop.IDpkComponentPanelSupportedSlot? Type891 { get; set; } /// /// /// - public global::Dataloop.JsServiceVersions? Type892 { get; set; } + public global::Dataloop.IDpkComponentModel? Type892 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentModule? Type893 { get; set; } + public global::Dataloop.IDpkComponentModelComputeConfigs? Type893 { get; set; } /// /// /// - public global::Dataloop.EComponentServiceOperation? Type894 { get; set; } + public global::Dataloop.JsServiceVersions? Type894 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentTrigger? Type895 { get; set; } + public global::Dataloop.IDpkComponentModule? Type895 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentTriggerSpec? Type896 { get; set; } + public global::Dataloop.EComponentServiceOperation? Type896 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentService? Type897 { get; set; } + public global::Dataloop.IDpkComponentTrigger? Type897 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentToolbars? Type898 { get; set; } + public global::Dataloop.IDpkComponentTriggerSpec? Type898 { get; set; } /// /// /// - public global::Dataloop.FilterFrequencyType? Type899 { get; set; } + public global::Dataloop.IDpkComponentService? Type899 { get; set; } /// /// /// - public global::Dataloop.FilterFrequency? Type900 { get; set; } + public global::Dataloop.IDpkComponentToolbars? Type900 { get; set; } /// /// /// - public global::Dataloop.IDpkFilter? Type901 { get; set; } + public global::Dataloop.FilterFrequencyType? Type901 { get; set; } /// /// /// - public global::Dataloop.IDpkChannel? Type902 { get; set; } + public global::Dataloop.FilterFrequency? Type902 { get; set; } /// /// /// - public global::Dataloop.IDpkChannelMetadata? Type903 { get; set; } + public global::Dataloop.IDpkFilter? Type903 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type904 { get; set; } + public global::Dataloop.IDpkChannel? Type904 { get; set; } /// /// /// - public global::Dataloop.IDpkComputeConfigs? Type905 { get; set; } + public global::Dataloop.IDpkChannelMetadata? Type905 { get; set; } /// /// /// - public global::Dataloop.InvokeType? Type906 { get; set; } + public global::System.Collections.Generic.IList? Type906 { get; set; } /// /// /// - public global::Dataloop.ToolbarInvoke? Type907 { get; set; } + public global::Dataloop.IDpkComputeConfigs? Type907 { get; set; } /// /// /// - public global::Dataloop.CustomNodeScope? Type908 { get; set; } + public global::Dataloop.InvokeType? Type908 { get; set; } /// /// /// - public global::Dataloop.IInvoke? Type909 { get; set; } + public global::Dataloop.ToolbarInvoke? Type909 { get; set; } /// /// /// - public global::Dataloop.IPipelineNode? Type910 { get; set; } + public global::Dataloop.CustomNodeScope? Type910 { get; set; } /// /// /// - public global::Dataloop.IDpkPipelineTemplate? Type911 { get; set; } + public global::Dataloop.IInvoke? Type911 { get; set; } /// /// /// - public global::Dataloop.IDpkPipelineTemplateTemplate? Type912 { get; set; } + public global::Dataloop.IPipelineNode? Type912 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentDataset? Type913 { get; set; } + public global::Dataloop.IDpkPipelineTemplate? Type913 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentDatasetOntology? Type914 { get; set; } + public global::Dataloop.IDpkPipelineTemplateTemplate? Type914 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentDatasetInvoke? Type915 { get; set; } + public global::Dataloop.IDpkComponentDataset? Type915 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentIntegrations? Type916 { get; set; } + public global::Dataloop.IDpkComponentDatasetOntology? Type916 { get; set; } /// /// /// - public global::Dataloop.DpkComponents? Type917 { get; set; } + public global::Dataloop.IDpkComponentDatasetInvoke? Type917 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type918 { get; set; } + public global::Dataloop.IDpkComponentIntegrations? Type918 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type919 { get; set; } + public global::Dataloop.DpkComponents? Type919 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type920 { get; set; } + public global::System.Collections.Generic.IList? Type920 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type921 { get; set; } + public global::System.Collections.Generic.IList? Type921 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type922 { get; set; } + public global::System.Collections.Generic.IList? Type922 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type923 { get; set; } + public global::System.Collections.Generic.IList? Type923 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type924 { get; set; } + public global::System.Collections.Generic.IList? Type924 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type925 { get; set; } + public global::System.Collections.Generic.IList? Type925 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type926 { get; set; } + public global::System.Collections.Generic.IList? Type926 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type927 { get; set; } + public global::System.Collections.Generic.IList? Type927 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type928 { get; set; } + public global::System.Collections.Generic.IList? Type928 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type929 { get; set; } + public global::System.Collections.Generic.IList? Type929 { get; set; } /// /// /// - public global::Dataloop.EComponentElementType? Type930 { get; set; } + public global::System.Collections.Generic.IList? Type930 { get; set; } /// /// /// - public global::Dataloop.IDpkPipelineNode? Type931 { get; set; } + public global::System.Collections.Generic.IList? Type931 { get; set; } /// /// /// - public global::Dataloop.IDpkComponentElementSpec? Type932 { get; set; } + public global::Dataloop.EComponentElementType? Type932 { get; set; } /// /// /// - public global::Dataloop.IComponentElement? Type933 { get; set; } + public global::Dataloop.IDpkPipelineNode? Type933 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type934 { get; set; } + public global::Dataloop.IDpkComponentElementSpec? Type934 { get; set; } /// /// /// - public global::Dataloop.IDpkDependency? Type935 { get; set; } + public global::Dataloop.IComponentElement? Type935 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type936 { get; set; } + public global::System.Collections.Generic.Dictionary? Type936 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type937 { get; set; } + public global::Dataloop.IDpkDependency? Type937 { get; set; } /// /// /// - public global::Dataloop.APIDpk? Type938 { get; set; } + public global::Dataloop.AnyOf>? Type938 { get; set; } /// /// /// - public global::Dataloop.EAppScope? Type939 { get; set; } + public global::System.Collections.Generic.IList? Type939 { get; set; } /// /// /// - public global::Dataloop.PartialAPIDpk? Type940 { get; set; } + public global::Dataloop.APIDpk? Type940 { get; set; } /// /// /// - public global::Dataloop.PickAPIDpkDependencies? Type941 { get; set; } + public global::Dataloop.EAppScope? Type941 { get; set; } /// /// /// - public global::Dataloop.CustomInstallation? Type942 { get; set; } + public global::Dataloop.PartialAPIDpk? Type942 { get; set; } /// /// /// - public global::Dataloop.CustomInstallationVariant2? Type943 { get; set; } + public global::Dataloop.PickAPIDpkDependencies? Type943 { get; set; } /// /// /// - public global::Dataloop.AppCommandsReference? Type944 { get; set; } + public global::Dataloop.CustomInstallation? Type944 { get; set; } /// /// /// - public global::Dataloop.AppMetadata? Type945 { get; set; } + public global::Dataloop.CustomInstallationVariant2? Type945 { get; set; } /// /// /// - public global::Dataloop.AppMetadataVariant2? Type946 { get; set; } + public global::Dataloop.AppCommandsReference? Type946 { get; set; } /// /// /// - public global::Dataloop.AppMetadataVariant2System? Type947 { get; set; } + public global::Dataloop.AppMetadata? Type947 { get; set; } /// /// /// - public global::Dataloop.IAppGeneralSettings? Type948 { get; set; } + public global::Dataloop.AppMetadataVariant2? Type948 { get; set; } /// /// /// - public global::Dataloop.APIApp? Type949 { get; set; } + public global::Dataloop.AppMetadataVariant2System? Type949 { get; set; } /// /// /// - public global::Dataloop.EComputeType? Type950 { get; set; } + public global::Dataloop.IAppGeneralSettings? Type950 { get; set; } /// /// /// - public global::Dataloop.EComputeStatus? Type951 { get; set; } + public global::Dataloop.APIApp? Type951 { get; set; } /// /// /// - public global::Dataloop.EClusterProvider? Type952 { get; set; } + public global::Dataloop.EComputeType? Type952 { get; set; } /// /// /// - public global::Dataloop.Toleration? Type953 { get; set; } + public global::Dataloop.EComputeStatus? Type953 { get; set; } /// /// /// - public global::Dataloop.INodePoolDeploymentResources? Type954 { get; set; } + public global::Dataloop.EClusterProvider? Type954 { get; set; } /// /// /// - public global::Dataloop.INodePoolDeploymentResourcesRequests? Type955 { get; set; } + public global::Dataloop.Toleration? Type955 { get; set; } /// /// /// - public global::Dataloop.INodePoolDeploymentResourcesLimits? Type956 { get; set; } + public global::Dataloop.INodePoolDeploymentResources? Type956 { get; set; } /// /// /// - public global::Dataloop.INodePool? Type957 { get; set; } + public global::Dataloop.INodePoolDeploymentResourcesRequests? Type957 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type958 { get; set; } + public global::Dataloop.INodePoolDeploymentResourcesLimits? Type958 { get; set; } /// /// /// - public global::Dataloop.EComputePlugin? Type959 { get; set; } + public global::Dataloop.INodePool? Type959 { get; set; } /// /// /// - public global::Dataloop.IExternalMonitoringConfig? Type960 { get; set; } + public global::System.Collections.Generic.IList? Type960 { get; set; } /// /// /// - public global::Dataloop.IHpaControllerConfig? Type961 { get; set; } + public global::Dataloop.EComputePlugin? Type961 { get; set; } /// /// /// - public global::Dataloop.EStorageType? Type962 { get; set; } + public global::Dataloop.IExternalMonitoringConfig? Type962 { get; set; } /// /// /// - public global::Dataloop.IStorage? Type963 { get; set; } + public global::Dataloop.IHpaControllerConfig? Type963 { get; set; } /// /// /// - public global::Dataloop.IStorageDriverConfig? Type964 { get; set; } + public global::Dataloop.EStorageType? Type964 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type965 { get; set; } + public global::Dataloop.IStorage? Type965 { get; set; } /// /// /// - public global::Dataloop.IComputeNfsPluginConfig? Type966 { get; set; } + public global::Dataloop.IStorageDriverConfig? Type966 { get; set; } /// /// /// - public global::Dataloop.KubernetesServiceType? Type967 { get; set; } + public global::System.Collections.Generic.IList? Type967 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type968 { get; set; } + public global::Dataloop.IComputeNfsPluginConfig? Type968 { get; set; } /// /// /// - public global::Dataloop.ComputePluginResourceManifests2? Type969 { get; set; } + public global::Dataloop.KubernetesServiceType? Type969 { get; set; } /// /// /// - public global::Dataloop.ComputePluginResourceManifestsSpec? Type970 { get; set; } + public global::System.Collections.Generic.Dictionary? Type970 { get; set; } /// /// /// - public global::Dataloop.ComputePluginResourceManifestsSpecResources? Type971 { get; set; } + public global::Dataloop.ComputePluginResourceManifests2? Type971 { get; set; } /// /// /// - public global::Dataloop.ComputePluginSpec? Type972 { get; set; } + public global::Dataloop.ComputePluginResourceManifestsSpec? Type972 { get; set; } /// /// /// - public global::Dataloop.ComputePluginSpecVariant2? Type973 { get; set; } + public global::Dataloop.ComputePluginResourceManifestsSpecResources? Type973 { get; set; } /// /// /// - public global::Dataloop.IComputePlugin? Type974 { get; set; } + public global::Dataloop.ComputePluginSpec? Type974 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type975 { get; set; } + public global::Dataloop.ComputePluginSpecVariant2? Type975 { get; set; } /// /// /// - public global::Dataloop.IComputeAuthentication? Type976 { get; set; } + public global::Dataloop.IComputePlugin? Type976 { get; set; } /// /// /// - public global::Dataloop.IComputeAuthenticationIntegration? Type977 { get; set; } + public global::Dataloop.AnyOf? Type977 { get; set; } /// /// /// - public global::Dataloop.IClusterVolume? Type978 { get; set; } + public global::Dataloop.IComputeAuthentication? Type978 { get; set; } /// /// /// - public global::Dataloop.IClusterVolumePersistentVolumeClaim? Type979 { get; set; } + public global::Dataloop.IComputeAuthenticationIntegration? Type979 { get; set; } /// /// /// - public global::Dataloop.IClusterVolumeHostPath? Type980 { get; set; } + public global::Dataloop.IClusterVolume? Type980 { get; set; } /// /// /// - public global::Dataloop.IClusterVolumeConfigMap? Type981 { get; set; } + public global::Dataloop.IClusterVolumePersistentVolumeClaim? Type981 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type982 { get; set; } + public global::Dataloop.IClusterVolumeHostPath? Type982 { get; set; } /// /// /// - public global::Dataloop.IClusterVolumeConfigMapItem? Type983 { get; set; } + public global::Dataloop.IClusterVolumeConfigMap? Type983 { get; set; } /// /// /// - public global::Dataloop.IClusterVolumeSecret? Type984 { get; set; } + public global::System.Collections.Generic.IList? Type984 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type985 { get; set; } + public global::Dataloop.IClusterVolumeConfigMapItem? Type985 { get; set; } /// /// /// - public global::Dataloop.IClusterVolumeSecretItem? Type986 { get; set; } + public global::Dataloop.IClusterVolumeSecret? Type986 { get; set; } /// /// /// - public global::Dataloop.IClusterVolumeNfs? Type987 { get; set; } + public global::System.Collections.Generic.IList? Type987 { get; set; } /// /// /// - public global::Dataloop.IDeploymentSecurityContext? Type988 { get; set; } + public global::Dataloop.IClusterVolumeSecretItem? Type988 { get; set; } /// /// /// - public global::Dataloop.IClusterEnvironmentVariable? Type989 { get; set; } + public global::Dataloop.IClusterVolumeNfs? Type989 { get; set; } /// /// /// - public global::Dataloop.IClusterEnvironmentVariableValueFrom? Type990 { get; set; } + public global::Dataloop.IDeploymentSecurityContext? Type990 { get; set; } /// /// /// - public global::Dataloop.IClusterEnvironmentVariableValueFromConfigMapKeyRef? Type991 { get; set; } + public global::Dataloop.IClusterEnvironmentVariable? Type991 { get; set; } /// /// /// - public global::Dataloop.IClusterEnvironmentVariableValueFromSecretKeyRef? Type992 { get; set; } + public global::Dataloop.IClusterEnvironmentVariableValueFrom? Type992 { get; set; } /// /// /// - public global::Dataloop.IClusterEnvironmentVariableValueFromFieldRef? Type993 { get; set; } + public global::Dataloop.IClusterEnvironmentVariableValueFromConfigMapKeyRef? Type993 { get; set; } /// /// /// - public global::Dataloop.IComputeRegistry? Type994 { get; set; } + public global::Dataloop.IClusterEnvironmentVariableValueFromSecretKeyRef? Type994 { get; set; } /// /// /// - public global::Dataloop.IDeploymentConfiguration? Type995 { get; set; } + public global::Dataloop.IClusterEnvironmentVariableValueFromFieldRef? Type995 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type996 { get; set; } + public global::Dataloop.IComputeRegistry? Type996 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type997 { get; set; } + public global::Dataloop.IDeploymentConfiguration? Type997 { get; set; } /// /// /// - public global::Dataloop.IDeploymentConfigurationDefaultResources? Type998 { get; set; } + public global::System.Collections.Generic.IList? Type998 { get; set; } /// /// /// - public global::Dataloop.IDeploymentConfigurationDefaultResourcesLimits? Type999 { get; set; } + public global::System.Collections.Generic.IList? Type999 { get; set; } /// /// /// - public global::Dataloop.IDeploymentConfigurationDefaultResourcesRequests? Type1000 { get; set; } + public global::Dataloop.IDeploymentConfigurationDefaultResources? Type1000 { get; set; } /// /// /// - public global::Dataloop.IRunAiConfig? Type1001 { get; set; } + public global::Dataloop.IDeploymentConfigurationDefaultResourcesLimits? Type1001 { get; set; } /// /// /// - public global::Dataloop.IComputeCluster? Type1002 { get; set; } + public global::Dataloop.IDeploymentConfigurationDefaultResourcesRequests? Type1002 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1003 { get; set; } + public global::Dataloop.IRunAiConfig? Type1003 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1004 { get; set; } + public global::Dataloop.IComputeCluster? Type1004 { get; set; } /// /// /// - public global::Dataloop.IComputeSettings? Type1005 { get; set; } + public global::System.Collections.Generic.IList? Type1005 { get; set; } /// /// /// - public global::Dataloop.APICompute? Type1006 { get; set; } + public global::System.Collections.Generic.IList? Type1006 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1007 { get; set; } + public global::Dataloop.IComputeSettings? Type1007 { get; set; } /// /// /// - public global::Dataloop.CursorPageT? Type1008 { get; set; } + public global::Dataloop.APICompute? Type1008 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1009 { get; set; } + public global::System.Collections.Generic.IList? Type1009 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1010 { get; set; } + public global::Dataloop.CursorPageT? Type1010 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1011 { get; set; } + public global::System.Collections.Generic.IList? Type1011 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1012 { get; set; } + public global::System.Collections.Generic.IList? Type1012 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1013 { get; set; } + public global::System.Collections.Generic.IList>? Type1013 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1014 { get; set; } + public global::Dataloop.AnyOf? Type1014 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1015 { get; set; } + public global::System.Collections.Generic.IList? Type1015 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1016 { get; set; } + public global::System.Collections.Generic.IList? Type1016 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1017 { get; set; } + public global::System.Collections.Generic.IList? Type1017 { get; set; } /// /// /// - public global::Dataloop.QueryString? Type1018 { get; set; } + public global::System.Collections.Generic.IList? Type1018 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPIPipelineState? Type1019 { get; set; } + public global::System.Collections.Generic.IList? Type1019 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1020 { get; set; } + public global::Dataloop.QueryString? Type1020 { get; set; } /// /// /// - public global::Dataloop.CycleRerunMethod? Type1021 { get; set; } + public global::Dataloop.CursorPageAPIPipelineState? Type1021 { get; set; } /// /// /// - public global::Dataloop.IRerunCycleOptions? Type1022 { get; set; } + public global::System.Collections.Generic.IList? Type1022 { get; set; } /// /// /// - public global::Dataloop.JsExecuteOptionsBatchQuery? Type1023 { get; set; } + public global::Dataloop.CycleRerunMethod? Type1023 { get; set; } /// /// /// - public global::Dataloop.JsExecuteOptionsBatchQueryContext? Type1024 { get; set; } + public global::Dataloop.IRerunCycleOptions? Type1024 { get; set; } /// /// /// - public global::Dataloop.IExecuteOptionsBatch? Type1025 { get; set; } + public global::Dataloop.JsExecuteOptionsBatchQuery? Type1025 { get; set; } /// /// /// - public global::Dataloop.IRerunCycleBatchOptions? Type1026 { get; set; } + public global::Dataloop.JsExecuteOptionsBatchQueryContext? Type1026 { get; set; } /// /// /// - public global::Dataloop.APIPipelineTemplate2? Type1027 { get; set; } + public global::Dataloop.IExecuteOptionsBatch? Type1027 { get; set; } /// /// /// - public global::Dataloop.APIPipelineTemplateTemplate? Type1028 { get; set; } + public global::Dataloop.IRerunCycleBatchOptions? Type1028 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPIPipelineTemplate? Type1029 { get; set; } + public global::Dataloop.APIPipelineTemplate2? Type1029 { get; set; } /// /// /// - public global::Dataloop.APITemplateQuery? Type1030 { get; set; } + public global::Dataloop.APIPipelineTemplateTemplate? Type1030 { get; set; } /// /// /// - public global::Dataloop.QueryStringTemplate? Type1031 { get; set; } + public global::Dataloop.CursorPageAPIPipelineTemplate? Type1031 { get; set; } /// /// /// - public global::Dataloop.TemplateQuery? Type1032 { get; set; } + public global::Dataloop.APITemplateQuery? Type1032 { get; set; } /// /// /// - public global::Dataloop.ExecutionLogs? Type1033 { get; set; } + public global::Dataloop.QueryStringTemplate? Type1033 { get; set; } /// /// /// - public global::Dataloop.PipelineExecutionLogs? Type1034 { get; set; } + public global::Dataloop.TemplateQuery? Type1034 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1035 { get; set; } + public global::Dataloop.ExecutionLogs? Type1035 { get; set; } /// /// /// - public global::Dataloop.IPostPipeline? Type1036 { get; set; } + public global::Dataloop.PipelineExecutionLogs? Type1036 { get; set; } /// /// /// - public global::Dataloop.IPipelineExecutionCount? Type1037 { get; set; } + public global::System.Collections.Generic.IList? Type1037 { get; set; } /// /// /// - public global::Dataloop.IExecutionCount? Type1038 { get; set; } + public global::Dataloop.IPostPipeline? Type1038 { get; set; } /// /// /// - public global::Dataloop.INodeExecutionCount? Type1039 { get; set; } + public global::Dataloop.IPipelineExecutionCount? Type1039 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1040 { get; set; } + public global::Dataloop.IExecutionCount? Type1040 { get; set; } /// /// /// - public global::Dataloop.IExecutionStatistics? Type1041 { get; set; } + public global::Dataloop.INodeExecutionCount? Type1041 { get; set; } /// /// /// - public global::Dataloop.INodeExecutionStatistics? Type1042 { get; set; } + public global::System.Collections.Generic.IList? Type1042 { get; set; } /// /// /// - public global::Dataloop.IPipelineStatistics? Type1043 { get; set; } + public global::Dataloop.IExecutionStatistics? Type1043 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1044 { get; set; } + public global::Dataloop.INodeExecutionStatistics? Type1044 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1045 { get; set; } + public global::Dataloop.IPipelineStatistics? Type1045 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1046 { get; set; } + public global::System.Collections.Generic.IList? Type1046 { get; set; } /// /// /// - public global::Dataloop.PipelineType? Type1047 { get; set; } + public global::System.Collections.Generic.IList? Type1047 { get; set; } /// /// /// - public global::Dataloop.ITextSearch? Type1048 { get; set; } + public global::System.Collections.Generic.IList? Type1048 { get; set; } /// /// /// - public global::Dataloop.PartialIPipeline? Type1049 { get; set; } + public global::Dataloop.PipelineType? Type1049 { get; set; } /// /// /// - public global::Dataloop.PartialIPipelineTemplate? Type1050 { get; set; } + public global::Dataloop.ITextSearch? Type1050 { get; set; } /// /// /// - public global::Dataloop.PipelineVersionListItem? Type1051 { get; set; } + public global::Dataloop.PartialIPipeline? Type1051 { get; set; } /// /// /// - public global::Dataloop.CursorPagePipelineVersionListItem? Type1052 { get; set; } + public global::Dataloop.PartialIPipelineTemplate? Type1052 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1053 { get; set; } + public global::Dataloop.PipelineVersionListItem? Type1053 { get; set; } /// /// /// - public global::Dataloop.APIPipelineVersion? Type1054 { get; set; } + public global::Dataloop.CursorPagePipelineVersionListItem? Type1054 { get; set; } /// /// /// - public global::Dataloop.ExecutePipelinePayload? Type1055 { get; set; } + public global::System.Collections.Generic.IList? Type1055 { get; set; } /// /// /// - public global::Dataloop.ExecuteOptionsBatchQuery? Type1056 { get; set; } + public global::Dataloop.APIPipelineVersion? Type1056 { get; set; } /// /// /// - public global::Dataloop.ExecuteOptionsBatchQueryContext? Type1057 { get; set; } + public global::Dataloop.ExecutePipelinePayload? Type1057 { get; set; } /// /// /// - public global::Dataloop.ExecuteOptionsBatch? Type1058 { get; set; } + public global::Dataloop.ExecuteOptionsBatchQuery? Type1058 { get; set; } /// /// /// - public global::Dataloop.ExecuteOptions? Type1059 { get; set; } + public global::Dataloop.ExecuteOptionsBatchQueryContext? Type1059 { get; set; } /// /// /// - public global::Dataloop.NodeDescriptor? Type1060 { get; set; } + public global::Dataloop.ExecuteOptionsBatch? Type1060 { get; set; } /// /// /// - public global::Dataloop.CompositionStatusDescriptor? Type1061 { get; set; } + public global::Dataloop.ExecuteOptions? Type1061 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPIPipeline? Type1062 { get; set; } + public global::Dataloop.NodeDescriptor? Type1062 { get; set; } /// /// /// - public global::Dataloop.PipelineNodeCategory? Type1063 { get; set; } + public global::Dataloop.CompositionStatusDescriptor? Type1063 { get; set; } /// /// /// - public global::Dataloop.Module? Type1064 { get; set; } + public global::Dataloop.CursorPageAPIPipeline? Type1064 { get; set; } /// /// /// - public global::Dataloop.UiHook? Type1065 { get; set; } + public global::Dataloop.PipelineNodeCategory? Type1065 { get; set; } /// /// /// - public global::Dataloop.PiperUiSlot? Type1066 { get; set; } + public global::Dataloop.Module? Type1066 { get; set; } /// /// /// - public global::Dataloop.PackageType? Type1067 { get; set; } + public global::Dataloop.UiHook? Type1067 { get; set; } /// /// /// - public global::Dataloop.PackageMetadata? Type1068 { get; set; } + public global::Dataloop.PiperUiSlot? Type1068 { get; set; } /// /// /// - public global::Dataloop.APIPackage? Type1069 { get; set; } + public global::Dataloop.PackageType? Type1069 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1070 { get; set; } + public global::Dataloop.PackageMetadata? Type1070 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1071 { get; set; } + public global::Dataloop.APIPackage? Type1071 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1072 { get; set; } + public global::System.Collections.Generic.IList? Type1072 { get; set; } /// /// /// - public global::Dataloop.PackagesPage? Type1073 { get; set; } + public global::System.Collections.Generic.IList? Type1073 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1074 { get; set; } + public global::System.Collections.Generic.IList? Type1074 { get; set; } /// /// /// - public global::Dataloop.JobMetadata? Type1075 { get; set; } + public global::Dataloop.PackagesPage? Type1075 { get; set; } /// /// /// - public global::Dataloop.JobRuntime? Type1076 { get; set; } + public global::System.Collections.Generic.IList? Type1076 { get; set; } /// /// /// - public global::Dataloop.JobStatusEnum? Type1077 { get; set; } + public global::Dataloop.JobMetadata? Type1077 { get; set; } /// /// /// - public global::Dataloop.JobStatus? Type1078 { get; set; } + public global::Dataloop.JobRuntime? Type1078 { get; set; } /// /// /// - public global::Dataloop.Job? Type1079 { get; set; } + public global::Dataloop.JobStatusEnum? Type1079 { get; set; } /// /// /// - public global::Dataloop.PartialJob? Type1080 { get; set; } + public global::Dataloop.JobStatus? Type1080 { get; set; } /// /// /// - public global::Dataloop.ExecutionsPage? Type1081 { get; set; } + public global::Dataloop.Job? Type1081 { get; set; } /// /// /// - public global::Dataloop.ExecutionsOrderByType? Type1082 { get; set; } + public global::Dataloop.PartialJob? Type1082 { get; set; } /// /// /// - public global::Dataloop.ExecutionsOrderByDirection? Type1083 { get; set; } + public global::Dataloop.ExecutionsPage? Type1083 { get; set; } /// /// /// - public global::Dataloop.CommandError? Type1084 { get; set; } + public global::Dataloop.ExecutionsOrderByType? Type1084 { get; set; } /// /// /// - public global::Dataloop.CommandStatus? Type1085 { get; set; } + public global::Dataloop.ExecutionsOrderByDirection? Type1085 { get; set; } /// /// /// - public global::Dataloop.CommandStatusHistoryEntry? Type1086 { get; set; } + public global::Dataloop.CommandError? Type1086 { get; set; } /// /// /// - public global::Dataloop.HttpContext? Type1087 { get; set; } + public global::Dataloop.CommandStatus? Type1087 { get; set; } /// /// /// - public global::Dataloop.CommandCtx? Type1088 { get; set; } + public global::Dataloop.CommandStatusHistoryEntry? Type1088 { get; set; } /// /// /// - public global::Dataloop.ChildrenCommandsProgress? Type1089 { get; set; } + public global::Dataloop.HttpContext? Type1089 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1090 { get; set; } + public global::Dataloop.CommandCtx? Type1090 { get; set; } /// /// /// - public global::Dataloop.CommandsDomain? Type1091 { get; set; } + public global::Dataloop.ChildrenCommandsProgress? Type1091 { get; set; } /// /// /// - public global::Dataloop.PiperSettingsCommands? Type1092 { get; set; } + public global::System.Collections.Generic.IList? Type1092 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1093 { get; set; } + public global::Dataloop.CommandsDomain? Type1093 { get; set; } /// /// /// - public global::Dataloop.PiperSettingsCommandsTrackingInfo? Type1094 { get; set; } + public global::Dataloop.PiperSettingsCommands? Type1094 { get; set; } /// /// /// - public global::Dataloop.PiperSettingsCommandsRetry? Type1095 { get; set; } + public global::System.Collections.Generic.IList? Type1095 { get; set; } /// /// /// - public global::Dataloop.APIExecutionPatch? Type1096 { get; set; } + public global::Dataloop.PiperSettingsCommandsTrackingInfo? Type1096 { get; set; } /// /// /// - public global::Dataloop.WorkloadParams? Type1097 { get; set; } + public global::Dataloop.PiperSettingsCommandsRetry? Type1097 { get; set; } /// /// /// - public global::Dataloop.APIPostDpk? Type1098 { get; set; } + public global::Dataloop.APIExecutionPatch? Type1098 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPIDpk? Type1099 { get; set; } + public global::Dataloop.WorkloadParams? Type1099 { get; set; } /// /// /// - public global::Dataloop.DpkAttributeValueDefinition? Type1100 { get; set; } + public global::Dataloop.APIPostDpk? Type1100 { get; set; } /// /// /// - public global::Dataloop.DpkAttributeValueDefinitionIcon? Type1101 { get; set; } + public global::Dataloop.CursorPageAPIDpk? Type1101 { get; set; } /// /// /// - public global::Dataloop.DpkAttributeValueDefinitionColor? Type1102 { get; set; } + public global::Dataloop.DpkAttributeValueDefinition? Type1102 { get; set; } /// /// /// - public global::Dataloop.DpkAttributesDefinition? Type1103 { get; set; } + public global::Dataloop.DpkAttributeValueDefinitionIcon? Type1103 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1104 { get; set; } + public global::Dataloop.DpkAttributeValueDefinitionColor? Type1104 { get; set; } /// /// /// - public global::Dataloop.PreviewsComponentsPatch? Type1105 { get; set; } + public global::Dataloop.DpkAttributesDefinition? Type1105 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1106 { get; set; } + public global::System.Collections.Generic.IList? Type1106 { get; set; } /// /// /// - public global::Dataloop.PreviewsComponentsPatchPipelineTemplate? Type1107 { get; set; } + public global::Dataloop.PreviewsComponentsPatch? Type1107 { get; set; } /// /// /// - public global::Dataloop.APIPatchDpk? Type1108 { get; set; } + public global::System.Collections.Generic.IList? Type1108 { get; set; } /// /// /// - public global::Dataloop.AgentCtx? Type1109 { get; set; } + public global::Dataloop.PreviewsComponentsPatchPipelineTemplate? Type1109 { get; set; } /// /// /// - public global::Dataloop.ICompute? Type1110 { get; set; } + public global::Dataloop.APIPatchDpk? Type1110 { get; set; } /// /// /// - public global::Dataloop.PartialICompute? Type1111 { get; set; } + public global::Dataloop.AgentCtx? Type1111 { get; set; } /// /// /// - public global::Dataloop.IPostComposition? Type1112 { get; set; } + public global::Dataloop.ICompute? Type1112 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPIComposition? Type1113 { get; set; } + public global::Dataloop.PartialICompute? Type1113 { get; set; } /// /// /// - public global::Dataloop.APIPostApp? Type1114 { get; set; } + public global::Dataloop.IPostComposition? Type1114 { get; set; } /// /// /// - public global::Dataloop.APIPatchApp? Type1115 { get; set; } + public global::Dataloop.CursorPageAPIComposition? Type1115 { get; set; } /// /// /// - public global::Dataloop.IPipeline? Type1116 { get; set; } + public global::Dataloop.APIPostApp? Type1116 { get; set; } /// /// /// - public global::Dataloop.IPipelineTemplate? Type1117 { get; set; } + public global::Dataloop.APIPatchApp? Type1117 { get; set; } /// /// /// - public global::Dataloop.IVersion? Type1118 { get; set; } + public global::Dataloop.IPipeline? Type1118 { get; set; } /// /// /// - public global::Dataloop.SettingsValueTypes? Type1119 { get; set; } + public global::Dataloop.IPipelineTemplate? Type1119 { get; set; } /// /// /// - public global::Dataloop.PlatformEntityType? Type1120 { get; set; } + public global::Dataloop.IVersion? Type1120 { get; set; } /// /// /// - public global::Dataloop.SettingScope? Type1121 { get; set; } + public global::Dataloop.SettingsValueTypes? Type1121 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1122 { get; set; } + public global::Dataloop.PlatformEntityType? Type1122 { get; set; } /// /// /// - public global::Dataloop.SettingScopeType? Type1123 { get; set; } + public global::Dataloop.SettingScope? Type1123 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1124 { get; set; } + public global::Dataloop.AnyOf? Type1124 { get; set; } /// /// /// - public global::Dataloop.SettingScopeId? Type1125 { get; set; } + public global::Dataloop.SettingScopeType? Type1125 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1126 { get; set; } + public global::Dataloop.AnyOf? Type1126 { get; set; } /// /// /// - public global::Dataloop.SettingScopeRole? Type1127 { get; set; } + public global::Dataloop.SettingScopeId? Type1127 { get; set; } /// /// /// - public global::Dataloop.SettingsTypes? Type1128 { get; set; } + public global::Dataloop.AnyOf? Type1128 { get; set; } /// /// /// - public global::Dataloop.APIFeatureFlag? Type1129 { get; set; } + public global::Dataloop.SettingScopeRole? Type1129 { get; set; } /// /// /// - public global::Dataloop.SettingsSectionNames? Type1130 { get; set; } + public global::Dataloop.SettingsTypes? Type1130 { get; set; } /// /// /// - public global::Dataloop.APIUserSetting? Type1131 { get; set; } + public global::Dataloop.APIFeatureFlag? Type1131 { get; set; } /// /// /// - public global::Dataloop.IUserContext? Type1132 { get; set; } + public global::Dataloop.SettingsSectionNames? Type1132 { get; set; } /// /// /// - public global::Dataloop.ResolverPayload? Type1133 { get; set; } + public global::Dataloop.APIUserSetting? Type1133 { get; set; } /// /// /// - public global::Dataloop.CreateSettingRequest? Type1134 { get; set; } + public global::Dataloop.IUserContext? Type1134 { get; set; } /// /// /// - public global::Dataloop.CreateFeatureFlagRequest? Type1135 { get; set; } + public global::Dataloop.ResolverPayload? Type1135 { get; set; } /// /// /// - public global::Dataloop.CreateUserSettingRequest? Type1136 { get; set; } + public global::Dataloop.CreateSettingRequest? Type1136 { get; set; } /// /// /// - public global::Dataloop.PartialSettingScope? Type1137 { get; set; } + public global::Dataloop.CreateFeatureFlagRequest? Type1137 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1138 { get; set; } + public global::Dataloop.CreateUserSettingRequest? Type1138 { get; set; } /// /// /// - public global::Dataloop.PartialSettingScopeType? Type1139 { get; set; } + public global::Dataloop.PartialSettingScope? Type1139 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1140 { get; set; } + public global::Dataloop.AnyOf? Type1140 { get; set; } /// /// /// - public global::Dataloop.PartialSettingScopeId? Type1141 { get; set; } + public global::Dataloop.PartialSettingScopeType? Type1141 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1142 { get; set; } + public global::Dataloop.AnyOf? Type1142 { get; set; } /// /// /// - public global::Dataloop.PartialSettingScopeRole? Type1143 { get; set; } + public global::Dataloop.PartialSettingScopeId? Type1143 { get; set; } /// /// /// - public global::Dataloop.PatchFeatureFlagRequest? Type1144 { get; set; } + public global::Dataloop.AnyOf? Type1144 { get; set; } /// /// /// - public global::Dataloop.PatchUserSettingRequest? Type1145 { get; set; } + public global::Dataloop.PartialSettingScopeRole? Type1145 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPIUserSettingOrAPIFeatureFlag? Type1146 { get; set; } + public global::Dataloop.PatchFeatureFlagRequest? Type1146 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1147 { get; set; } + public global::Dataloop.PatchUserSettingRequest? Type1147 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1148 { get; set; } + public global::Dataloop.CursorPageAPIUserSettingOrAPIFeatureFlag? Type1148 { get; set; } /// /// /// - public global::Dataloop.MigrationSpec? Type1149 { get; set; } + public global::System.Collections.Generic.IList>? Type1149 { get; set; } /// /// /// - public global::Dataloop.MigrationSpecVariant2? Type1150 { get; set; } + public global::Dataloop.AnyOf? Type1150 { get; set; } /// /// /// - public global::Dataloop.RemoveSettingTraceMigrationSpec? Type1151 { get; set; } + public global::Dataloop.MigrationSpec? Type1151 { get; set; } /// /// /// - public global::Dataloop.RemoveSettingTraceMigrationSpecVariant2? Type1152 { get; set; } + public global::Dataloop.MigrationSpecVariant2? Type1152 { get; set; } /// /// /// - public global::Dataloop.AzureWebhookEvent? Type1153 { get; set; } + public global::Dataloop.RemoveSettingTraceMigrationSpec? Type1153 { get; set; } /// /// /// - public global::Dataloop.AzureWebhookEventAction? Type1154 { get; set; } + public global::Dataloop.RemoveSettingTraceMigrationSpecVariant2? Type1154 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1155 { get; set; } + public global::Dataloop.AzureWebhookEvent? Type1155 { get; set; } /// /// /// - public global::Dataloop.AzureWebhookEventOperationRequestSource? Type1156 { get; set; } + public global::Dataloop.AzureWebhookEventAction? Type1156 { get; set; } /// /// /// - public global::Dataloop.AzureWebhookEventSubscription? Type1157 { get; set; } + public global::Dataloop.AnyOf? Type1157 { get; set; } /// /// /// - public global::Dataloop.AzureWebhookEventSubscriptionTerm? Type1158 { get; set; } + public global::Dataloop.AzureWebhookEventOperationRequestSource? Type1158 { get; set; } /// /// /// - public global::Dataloop.AzureWebhookEventSubscriptionPurchaser? Type1159 { get; set; } + public global::Dataloop.AzureWebhookEventSubscription? Type1159 { get; set; } /// /// /// - public global::Dataloop.AzureWebhookEventSubscriptionBeneficiary? Type1160 { get; set; } + public global::Dataloop.AzureWebhookEventSubscriptionTerm? Type1160 { get; set; } /// /// /// - public global::Dataloop.UsageLog? Type1161 { get; set; } + public global::Dataloop.AzureWebhookEventSubscriptionPurchaser? Type1161 { get; set; } /// /// /// - public global::Dataloop.ResourceUsage? Type1162 { get; set; } + public global::Dataloop.AzureWebhookEventSubscriptionBeneficiary? Type1162 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1163 { get; set; } + public global::Dataloop.UsageLog? Type1163 { get; set; } /// /// /// - public global::Dataloop.UsageReport? Type1164 { get; set; } + public global::Dataloop.ResourceUsage? Type1164 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1165 { get; set; } + public global::System.Collections.Generic.IList? Type1165 { get; set; } /// /// /// - public global::Dataloop.UsageResourcesReport? Type1166 { get; set; } + public global::Dataloop.UsageReport? Type1166 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1167 { get; set; } + public global::System.Collections.Generic.IList? Type1167 { get; set; } /// /// /// - public global::Dataloop.EditSubscriptionInput? Type1168 { get; set; } + public global::Dataloop.UsageResourcesReport? Type1168 { get; set; } /// /// /// - public global::Dataloop.RenewSubscriptionInput? Type1169 { get; set; } + public global::System.Collections.Generic.IList? Type1169 { get; set; } /// /// /// - public global::Dataloop.CursorPageAPISubscription? Type1170 { get; set; } + public global::Dataloop.EditSubscriptionInput? Type1170 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1171 { get; set; } + public global::Dataloop.RenewSubscriptionInput? Type1171 { get; set; } /// /// /// - public global::Dataloop.BillingScope? Type1172 { get; set; } + public global::Dataloop.CursorPageAPISubscription? Type1172 { get; set; } /// /// /// - public global::Dataloop.CustomSubscriptionInput? Type1173 { get; set; } + public global::System.Collections.Generic.IList? Type1173 { get; set; } /// /// /// - public global::Dataloop.SubscriptionUpgradeInput? Type1174 { get; set; } + public global::Dataloop.BillingScope? Type1174 { get; set; } /// /// /// - public global::Dataloop.SubscriptionExtensionInput? Type1175 { get; set; } + public global::Dataloop.CustomSubscriptionInput? Type1175 { get; set; } /// /// /// - public global::Dataloop.PaymentDriverTypes? Type1176 { get; set; } + public global::Dataloop.SubscriptionUpgradeInput? Type1176 { get; set; } /// /// /// - public global::Dataloop.RangeOrFeatureTier? Type1177 { get; set; } + public global::Dataloop.SubscriptionExtensionInput? Type1177 { get; set; } /// /// /// - public global::Dataloop.RangeOrFeatureTierRange? Type1178 { get; set; } + public global::Dataloop.PaymentDriverTypes? Type1178 { get; set; } /// /// /// - public global::Dataloop.OverQuota? Type1179 { get; set; } + public global::Dataloop.RangeOrFeatureTier? Type1179 { get; set; } /// /// /// - public global::Dataloop.APIBillableResource? Type1180 { get; set; } + public global::Dataloop.RangeOrFeatureTierRange? Type1180 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1181 { get; set; } + public global::Dataloop.OverQuota? Type1181 { get; set; } /// /// /// - public global::Dataloop.SubscriptionInput? Type1182 { get; set; } + public global::Dataloop.APIBillableResource? Type1182 { get; set; } /// /// /// - public global::Dataloop.UIHours? Type1183 { get; set; } + public global::System.Collections.Generic.IList? Type1183 { get; set; } /// /// /// - public global::Dataloop.APICallResourceDescriptor? Type1184 { get; set; } + public global::Dataloop.SubscriptionInput? Type1184 { get; set; } /// /// /// - public global::Dataloop.APICallSourceDescriptor? Type1185 { get; set; } + public global::Dataloop.UIHours? Type1185 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type1186 { get; set; } + public global::Dataloop.APICallResourceDescriptor? Type1186 { get; set; } /// /// /// - public global::Dataloop.APICallDescriptor? Type1187 { get; set; } + public global::Dataloop.APICallSourceDescriptor? Type1187 { get; set; } /// /// /// - public global::Dataloop.StorageModificationSourceDescriptor? Type1188 { get; set; } + public global::System.Collections.Generic.Dictionary? Type1188 { get; set; } /// /// /// - public global::Dataloop.StorageModificationDescriptor? Type1189 { get; set; } + public global::Dataloop.APICallDescriptor? Type1189 { get; set; } /// /// /// - public global::Dataloop.StorageDatasetDescriptor? Type1190 { get; set; } + public global::Dataloop.StorageModificationSourceDescriptor? Type1190 { get; set; } /// /// /// - public global::Dataloop.StorageDescriptor? Type1191 { get; set; } + public global::Dataloop.StorageModificationDescriptor? Type1191 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1192 { get; set; } + public global::Dataloop.StorageDatasetDescriptor? Type1192 { get; set; } /// /// /// - public global::Dataloop.PodType? Type1193 { get; set; } + public global::Dataloop.StorageDescriptor? Type1193 { get; set; } /// /// /// - public global::Dataloop.FaasUsageServiceInstanceDescriptor? Type1194 { get; set; } + public global::System.Collections.Generic.IList? Type1194 { get; set; } /// /// /// - public global::Dataloop.FaasGlobalServiceDescriptor? Type1195 { get; set; } + public global::Dataloop.PodType? Type1195 { get; set; } /// /// /// - public global::Dataloop.FaasUsageDescriptor? Type1196 { get; set; } + public global::Dataloop.FaasUsageServiceInstanceDescriptor? Type1196 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1197 { get; set; } + public global::Dataloop.FaasGlobalServiceDescriptor? Type1197 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1198 { get; set; } + public global::Dataloop.FaasUsageDescriptor? Type1198 { get; set; } /// /// /// - public global::Dataloop.ItemsCount? Type1199 { get; set; } + public global::System.Collections.Generic.IList? Type1199 { get; set; } /// /// /// - public global::Dataloop.IngestedDatapointsDescriptor? Type1200 { get; set; } + public global::System.Collections.Generic.IList? Type1200 { get; set; } /// /// /// - public global::Dataloop.APIUsageEntry? Type1201 { get; set; } + public global::Dataloop.ItemsCount? Type1201 { get; set; } /// /// /// - public global::Dataloop.ContactAddress? Type1202 { get; set; } + public global::Dataloop.IngestedDatapointsDescriptor? Type1202 { get; set; } /// /// /// - public global::Dataloop.Address? Type1203 { get; set; } + public global::Dataloop.APIUsageEntry? Type1203 { get; set; } /// /// /// - public global::Dataloop.ContactInfo? Type1204 { get; set; } + public global::Dataloop.ContactAddress? Type1204 { get; set; } /// /// /// - public global::Dataloop.LineItem? Type1205 { get; set; } + public global::Dataloop.Address? Type1205 { get; set; } /// /// /// - public global::Dataloop.InvoiceStatus? Type1206 { get; set; } + public global::Dataloop.ContactInfo? Type1206 { get; set; } /// /// /// - public global::Dataloop.Currency? Type1207 { get; set; } + public global::Dataloop.LineItem? Type1207 { get; set; } /// /// /// - public global::Dataloop.PaymentDetails? Type1208 { get; set; } + public global::Dataloop.InvoiceStatus? Type1208 { get; set; } /// /// /// - public global::Dataloop.Invoice? Type1209 { get; set; } + public global::Dataloop.Currency? Type1209 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1210 { get; set; } + public global::Dataloop.PaymentDetails? Type1210 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1211 { get; set; } + public global::Dataloop.Invoice? Type1211 { get; set; } /// /// /// - public global::Dataloop.InvoiceBilledPeriod? Type1212 { get; set; } + public global::System.Collections.Generic.IList? Type1212 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1213 { get; set; } + public global::System.Collections.Generic.IList? Type1213 { get; set; } /// /// /// - public global::Dataloop.TaxType? Type1214 { get; set; } + public global::Dataloop.InvoiceBilledPeriod? Type1214 { get; set; } /// /// /// - public global::Dataloop.TaxData? Type1215 { get; set; } + public global::System.Collections.Generic.IList? Type1215 { get; set; } /// /// /// - public global::Dataloop.DBBillingAccount? Type1216 { get; set; } + public global::Dataloop.TaxType? Type1216 { get; set; } /// /// /// - public global::Dataloop.PartialBillingAccount? Type1217 { get; set; } + public global::Dataloop.TaxData? Type1217 { get; set; } /// /// /// - public global::Dataloop.PartialBillingAccountTaxData? Type1218 { get; set; } + public global::Dataloop.DBBillingAccount? Type1218 { get; set; } /// /// /// - public global::Dataloop.PaymentDriverType? Type1219 { get; set; } + public global::Dataloop.PartialBillingAccount? Type1219 { get; set; } /// /// /// - public global::Dataloop.DBPaymentDriverConfiguration? Type1220 { get; set; } + public global::Dataloop.PartialBillingAccountTaxData? Type1220 { get; set; } /// /// /// - public global::Dataloop.DBPaymentDriverConfigurationType? Type1221 { get; set; } + public global::Dataloop.PaymentDriverType? Type1221 { get; set; } /// /// /// - public global::Dataloop.CreditCard? Type1222 { get; set; } + public global::Dataloop.DBPaymentDriverConfiguration? Type1222 { get; set; } /// /// /// - public global::Dataloop.PaymentMethod? Type1223 { get; set; } + public global::Dataloop.DBPaymentDriverConfigurationType? Type1223 { get; set; } /// /// /// - public global::Dataloop.ResourceAuditEventType? Type1224 { get; set; } + public global::Dataloop.CreditCard? Type1224 { get; set; } /// /// /// - public global::Dataloop.ResourceAuditLog? Type1225 { get; set; } + public global::Dataloop.PaymentMethod? Type1225 { get; set; } /// /// /// - public global::Dataloop.ResourceAuditLogCtx? Type1226 { get; set; } + public global::Dataloop.ResourceAuditEventType? Type1226 { get; set; } /// /// /// - public global::Dataloop.AuditLogsCursorPage? Type1227 { get; set; } + public global::Dataloop.ResourceAuditLog? Type1227 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1228 { get; set; } + public global::Dataloop.ResourceAuditLogCtx? Type1228 { get; set; } /// /// /// - public global::Dataloop.AlertStatus? Type1229 { get; set; } + public global::Dataloop.AuditLogsCursorPage? Type1229 { get; set; } /// /// /// - public global::Dataloop.APIAlert? Type1230 { get; set; } + public global::System.Collections.Generic.IList? Type1230 { get; set; } /// /// /// - public global::Dataloop.FieldSort? Type1231 { get; set; } + public global::Dataloop.AlertStatus? Type1231 { get; set; } /// /// /// - public global::Dataloop.FieldSortField? Type1232 { get; set; } + public global::Dataloop.APIAlert? Type1232 { get; set; } /// /// /// - public global::Dataloop.FieldSortDirection? Type1233 { get; set; } + public global::Dataloop.FieldSort? Type1233 { get; set; } /// /// /// - public global::Dataloop.MongoStorageDatasetDescriptor? Type1234 { get; set; } + public global::Dataloop.FieldSortField? Type1234 { get; set; } /// /// /// - public global::Dataloop.MongoStorageDescriptor? Type1235 { get; set; } + public global::Dataloop.FieldSortDirection? Type1235 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1236 { get; set; } + public global::Dataloop.MongoStorageDatasetDescriptor? Type1236 { get; set; } /// /// /// - public global::Dataloop.MongoAPIUsageEntry? Type1237 { get; set; } + public global::Dataloop.MongoStorageDescriptor? Type1237 { get; set; } /// /// /// - public global::Dataloop.ArchiveAnnotationToStorageRequest? Type1238 { get; set; } + public global::System.Collections.Generic.IList? Type1238 { get; set; } /// /// /// - public global::Dataloop.RestoreArchivedAnnotationToDBRequest? Type1239 { get; set; } + public global::Dataloop.MongoAPIUsageEntry? Type1239 { get; set; } /// /// /// - public global::Dataloop.GetProjectsActiveCountersRequest? Type1240 { get; set; } + public global::Dataloop.ArchiveAnnotationToStorageRequest? Type1240 { get; set; } /// /// /// - public global::Dataloop.GetCountersForProjectRequest? Type1241 { get; set; } + public global::Dataloop.RestoreArchivedAnnotationToDBRequest? Type1241 { get; set; } /// /// /// - public global::Dataloop.CreateApiKeyRequest? Type1242 { get; set; } + public global::Dataloop.GetProjectsActiveCountersRequest? Type1242 { get; set; } /// /// /// - public global::Dataloop.ResolveTemplateRequest? Type1243 { get; set; } + public global::Dataloop.GetCountersForProjectRequest? Type1243 { get; set; } /// /// /// - public global::Dataloop.SetItemStatusBulkTaskRequest? Type1244 { get; set; } + public global::Dataloop.CreateApiKeyRequest? Type1244 { get; set; } /// /// /// - public global::Dataloop.SetItemStatusBulkAssignmentRequest? Type1245 { get; set; } + public global::Dataloop.ResolveTemplateRequest? Type1245 { get; set; } /// /// /// - public global::Dataloop.GetAssignmentFieldsRequest? Type1246 { get; set; } + public global::Dataloop.SetItemStatusBulkTaskRequest? Type1246 { get; set; } /// /// /// - public global::Dataloop.QueryAuditLogsRequest? Type1247 { get; set; } + public global::Dataloop.SetItemStatusBulkAssignmentRequest? Type1247 { get; set; } /// /// /// - public global::Dataloop.UpdateAlertRequest? Type1248 { get; set; } + public global::Dataloop.GetAssignmentFieldsRequest? Type1248 { get; set; } /// /// /// - public global::Dataloop.ListAccountAlertsRequest? Type1249 { get; set; } + public global::Dataloop.QueryAuditLogsRequest? Type1249 { get; set; } /// /// /// - public global::Dataloop.InstallRequest? Type1250 { get; set; } + public global::Dataloop.UpdateAlertRequest? Type1250 { get; set; } /// /// /// - public global::Dataloop.UninstallRequest? Type1251 { get; set; } + public global::Dataloop.ListAccountAlertsRequest? Type1251 { get; set; } /// /// /// - public global::Dataloop.AllOf? Type1252 { get; set; } + public global::Dataloop.InstallRequest? Type1252 { get; set; } /// /// /// - public global::Dataloop.UpdateComputeRequest2? Type1253 { get; set; } + public global::Dataloop.UninstallRequest? Type1253 { get; set; } /// /// /// - public global::Dataloop.SchemaCleanupRequest? Type1254 { get; set; } + public global::Dataloop.AllOf? Type1254 { get; set; } /// /// /// - public global::Dataloop.GetDatasetsByProjectIdsRequest? Type1255 { get; set; } + public global::Dataloop.UpdateComputeRequest2? Type1255 { get; set; } /// /// /// - public global::Dataloop.ListExportHistoryRequest? Type1256 { get; set; } + public global::Dataloop.SchemaCleanupRequest? Type1256 { get; set; } /// /// /// - public global::Dataloop.ListExportHistoryRequestSortOrder? Type1257 { get; set; } + public global::Dataloop.GetDatasetsByProjectIdsRequest? Type1257 { get; set; } /// /// /// - public global::Dataloop.ListExportHistoryRequestSortBy? Type1258 { get; set; } + public global::Dataloop.ListExportHistoryRequest? Type1258 { get; set; } /// /// /// - public global::Dataloop.AllOf?>? Type1259 { get; set; } + public global::Dataloop.ListExportHistoryRequestSortOrder? Type1259 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1260 { get; set; } + public global::Dataloop.ListExportHistoryRequestSortBy? Type1260 { get; set; } /// /// /// - public global::Dataloop.QueryDatasetsRequest? Type1261 { get; set; } + public global::Dataloop.AllOf?>? Type1261 { get; set; } /// /// /// - public global::Dataloop.QueryDatasetsRequestTarget? Type1262 { get; set; } + public global::Dataloop.AnyOf? Type1262 { get; set; } /// /// /// - public global::Dataloop.AllOf? Type1263 { get; set; } + public global::Dataloop.QueryDatasetsRequest? Type1263 { get; set; } /// /// /// - public global::Dataloop.RestoreDatasetRequest? Type1264 { get; set; } + public global::Dataloop.QueryDatasetsRequestTarget? Type1264 { get; set; } /// /// /// - public global::Dataloop.RemoveItemsByQueryRequest? Type1265 { get; set; } + public global::Dataloop.AllOf? Type1265 { get; set; } /// /// /// - public global::Dataloop.BulkUpdateMetadataRequest? Type1266 { get; set; } + public global::Dataloop.RestoreDatasetRequest? Type1266 { get; set; } /// /// /// - public global::Dataloop.BullkGenerateAnnotationThumbnailsRequest? Type1267 { get; set; } + public global::Dataloop.RemoveItemsByQueryRequest? Type1267 { get; set; } /// /// /// - public global::Dataloop.BullkGenerateAnnotationThumbnailsRequestOptions? Type1268 { get; set; } + public global::Dataloop.BulkUpdateMetadataRequest? Type1268 { get; set; } /// /// /// - public global::Dataloop.CreateItemCollectionRequest? Type1269 { get; set; } + public global::Dataloop.BullkGenerateAnnotationThumbnailsRequest? Type1269 { get; set; } /// /// /// - public global::Dataloop.AddItemsToItemCollectionsRequest? Type1270 { get; set; } + public global::Dataloop.BullkGenerateAnnotationThumbnailsRequestOptions? Type1270 { get; set; } /// /// /// - public global::Dataloop.RemoveItemsFromItemCollectionsRequest? Type1271 { get; set; } + public global::Dataloop.CreateItemCollectionRequest? Type1271 { get; set; } /// /// /// - public global::Dataloop.RenameItemCollectionRequest? Type1272 { get; set; } + public global::Dataloop.AddItemsToItemCollectionsRequest? Type1272 { get; set; } /// /// /// - public global::Dataloop.InvalidateAnnotationThumbnailsRequest? Type1273 { get; set; } + public global::Dataloop.RemoveItemsFromItemCollectionsRequest? Type1273 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type1274 { get; set; } + public global::Dataloop.RenameItemCollectionRequest? Type1274 { get; set; } /// /// /// - public global::Dataloop.MoveItemsRequest? Type1275 { get; set; } + public global::Dataloop.InvalidateAnnotationThumbnailsRequest? Type1275 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type1276 { get; set; } + public global::Dataloop.AnyOf>? Type1276 { get; set; } /// /// /// - public global::Dataloop.ArchiveDatasetItemAnnotationToStorageRequest? Type1277 { get; set; } + public global::Dataloop.MoveItemsRequest? Type1277 { get; set; } /// /// /// - public global::Dataloop.RestoreArchivedDatasetItemAnnotationToDBRequest? Type1278 { get; set; } + public global::Dataloop.AnyOf>? Type1278 { get; set; } /// /// /// - public global::Dataloop.GetFilteredDatasetLabelAggregationRequest? Type1279 { get; set; } + public global::Dataloop.ArchiveDatasetItemAnnotationToStorageRequest? Type1279 { get; set; } /// /// /// - public global::Dataloop.GetFilteredDatasetTypeAggregationRequest? Type1280 { get; set; } + public global::Dataloop.RestoreArchivedDatasetItemAnnotationToDBRequest? Type1280 { get; set; } /// /// /// - public global::Dataloop.AnyOf, global::Dataloop.ImportItemsToDatasetRequest>? Type1281 { get; set; } + public global::Dataloop.GetFilteredDatasetLabelAggregationRequest? Type1281 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1282 { get; set; } + public global::Dataloop.GetFilteredDatasetTypeAggregationRequest? Type1282 { get; set; } /// /// /// - public global::Dataloop.ImportItemsToDatasetRequest? Type1283 { get; set; } + public global::Dataloop.AnyOf, global::Dataloop.ImportItemsToDatasetRequest>? Type1283 { get; set; } /// /// /// - public global::Dataloop.SplitMlOperationRequest? Type1284 { get; set; } + public global::System.Collections.Generic.IList? Type1284 { get; set; } /// /// /// - public global::Dataloop.MigrateDriversIntegrationRequest? Type1285 { get; set; } + public global::Dataloop.ImportItemsToDatasetRequest? Type1285 { get; set; } /// /// /// - public global::Dataloop.CheckStorageDriversIntegrationByIntegrationIdRequest? Type1286 { get; set; } + public global::Dataloop.SplitMlOperationRequest? Type1286 { get; set; } /// /// /// - public global::Dataloop.NackRequest? Type1287 { get; set; } + public global::Dataloop.MigrateDriversIntegrationRequest? Type1287 { get; set; } /// /// /// - public global::Dataloop.PushProgressRequest? Type1288 { get; set; } + public global::Dataloop.CheckStorageDriversIntegrationByIntegrationIdRequest? Type1288 { get; set; } /// /// /// - public global::Dataloop.CreateExecutionRequest? Type1289 { get; set; } + public global::Dataloop.NackRequest? Type1289 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type1290 { get; set; } + public global::Dataloop.PushProgressRequest? Type1290 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1291 { get; set; } + public global::Dataloop.CreateExecutionRequest? Type1291 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type1292 { get; set; } + public global::Dataloop.AnyOf>? Type1292 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1293 { get; set; } + public global::System.Collections.Generic.IList? Type1293 { get; set; } /// /// /// - public global::Dataloop.AddGroupMemberRequest? Type1294 { get; set; } + public global::Dataloop.AnyOf>? Type1294 { get; set; } /// /// /// - public global::Dataloop.UpdateGroupOwnerRequest? Type1295 { get; set; } + public global::System.Collections.Generic.IList? Type1295 { get; set; } /// /// /// - public global::Dataloop.AddSubGroupRequest? Type1296 { get; set; } + public global::Dataloop.AddGroupMemberRequest? Type1296 { get; set; } /// /// /// - public global::Dataloop.ArchiveItemAnnotationToStorageRequest? Type1297 { get; set; } + public global::Dataloop.UpdateGroupOwnerRequest? Type1297 { get; set; } /// /// /// - public global::Dataloop.RestoreArchivedItemAnnotationToDBRequest? Type1298 { get; set; } + public global::Dataloop.AddSubGroupRequest? Type1298 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type1299 { get; set; } + public global::Dataloop.ArchiveItemAnnotationToStorageRequest? Type1299 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1300 { get; set; } + public global::Dataloop.RestoreArchivedItemAnnotationToDBRequest? Type1300 { get; set; } /// /// /// - public global::Dataloop.GenerateModelMetricsReportRequest? Type1301 { get; set; } + public global::Dataloop.AnyOf>? Type1301 { get; set; } /// /// /// - public global::Dataloop.ModelsExecutionsRequest? Type1302 { get; set; } + public global::System.Collections.Generic.IList? Type1302 { get; set; } /// /// /// - public global::Dataloop.ModelsServicesRequest? Type1303 { get; set; } + public global::Dataloop.GenerateModelMetricsReportRequest? Type1303 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1304 { get; set; } + public global::Dataloop.ModelsExecutionsRequest? Type1304 { get; set; } /// /// /// - public global::Dataloop.DeployModelRequest? Type1305 { get; set; } + public global::Dataloop.ModelsServicesRequest? Type1305 { get; set; } /// /// /// - public global::Dataloop.UpdateModelDeploymentRequest? Type1306 { get; set; } + public global::Dataloop.AnyOf? Type1306 { get; set; } /// /// /// - public global::Dataloop.ExtractItemFeaturesRequest? Type1307 { get; set; } + public global::Dataloop.DeployModelRequest? Type1307 { get; set; } /// /// /// - public global::Dataloop.ExtractItemFeaturesRequestConfig? Type1308 { get; set; } + public global::Dataloop.UpdateModelDeploymentRequest? Type1308 { get; set; } /// /// /// - public global::Dataloop.ExtractItemFeaturesRequestInput? Type1309 { get; set; } + public global::Dataloop.ExtractItemFeaturesRequest? Type1309 { get; set; } /// /// /// - public global::Dataloop.EvaluateModelRequest? Type1310 { get; set; } + public global::Dataloop.ExtractItemFeaturesRequestConfig? Type1310 { get; set; } /// /// /// - public global::Dataloop.EvaluateModelRequestConfig? Type1311 { get; set; } + public global::Dataloop.ExtractItemFeaturesRequestInput? Type1311 { get; set; } /// /// /// - public global::Dataloop.EvaluateModelRequestInput? Type1312 { get; set; } + public global::Dataloop.EvaluateModelRequest? Type1312 { get; set; } /// /// /// - public global::Dataloop.ModelPredictionRequest? Type1313 { get; set; } + public global::Dataloop.EvaluateModelRequestConfig? Type1313 { get; set; } /// /// /// - public global::Dataloop.ModelPredictionRequestConfig? Type1314 { get; set; } + public global::Dataloop.EvaluateModelRequestInput? Type1314 { get; set; } /// /// /// - public global::Dataloop.ModelPredictionRequestInput? Type1315 { get; set; } + public global::Dataloop.ModelPredictionRequest? Type1315 { get; set; } /// /// /// - public global::Dataloop.TrainModelRequest? Type1316 { get; set; } + public global::Dataloop.ModelPredictionRequestConfig? Type1316 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1317 { get; set; } + public global::Dataloop.ModelPredictionRequestInput? Type1317 { get; set; } /// /// /// - public global::Dataloop.DeleteAttributesRequest? Type1318 { get; set; } + public global::Dataloop.TrainModelRequest? Type1318 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1319 { get; set; } + public global::Dataloop.AnyOf? Type1319 { get; set; } /// /// /// - public global::Dataloop.CreateOrgRequest? Type1320 { get; set; } + public global::Dataloop.DeleteAttributesRequest? Type1320 { get; set; } /// /// /// - public global::Dataloop.PatchOrgRequest? Type1321 { get; set; } + public global::System.Collections.Generic.IList? Type1321 { get; set; } /// /// /// - public global::Dataloop.CreateOrgBotRequest? Type1322 { get; set; } + public global::Dataloop.CreateOrgRequest? Type1322 { get; set; } /// /// /// - public global::Dataloop.CreateIntegrationRequest? Type1323 { get; set; } + public global::Dataloop.PatchOrgRequest? Type1323 { get; set; } /// /// /// - public global::Dataloop.AddOrgMembersRequest? Type1324 { get; set; } + public global::Dataloop.CreateOrgBotRequest? Type1324 { get; set; } /// /// /// - public global::Dataloop.PatchOrgMemberRequest? Type1325 { get; set; } + public global::Dataloop.CreateIntegrationRequest? Type1325 { get; set; } /// /// /// - public global::Dataloop.UpdateOrgPlanRequest? Type1326 { get; set; } + public global::Dataloop.AddOrgMembersRequest? Type1326 { get; set; } /// /// /// - public global::Dataloop.InstallRequest2? Type1327 { get; set; } + public global::Dataloop.PatchOrgMemberRequest? Type1327 { get; set; } /// /// /// - public global::Dataloop.UninstallRequest2? Type1328 { get; set; } + public global::Dataloop.UpdateOrgPlanRequest? Type1328 { get; set; } /// /// /// - public global::Dataloop.LogsRequest? Type1329 { get; set; } + public global::Dataloop.InstallRequest2? Type1329 { get; set; } /// /// /// - public global::Dataloop.QueryBillingMetricsRequest? Type1330 { get; set; } + public global::Dataloop.UninstallRequest2? Type1330 { get; set; } /// /// /// - public global::Dataloop.UpdateProjectGuestRequest? Type1331 { get; set; } + public global::Dataloop.LogsRequest? Type1331 { get; set; } /// /// /// - public global::Dataloop.AddOrgToGuestRequest? Type1332 { get; set; } + public global::Dataloop.QueryBillingMetricsRequest? Type1332 { get; set; } /// /// /// - public global::Dataloop.PatchProjectRequest? Type1333 { get; set; } + public global::Dataloop.UpdateProjectGuestRequest? Type1333 { get; set; } /// /// /// - public global::Dataloop.SetProjectAccountRequest? Type1334 { get; set; } + public global::Dataloop.AddOrgToGuestRequest? Type1334 { get; set; } /// /// /// - public global::Dataloop.AddOrgToProjectRequest? Type1335 { get; set; } + public global::Dataloop.PatchProjectRequest? Type1335 { get; set; } /// /// /// - public global::Dataloop.AddGroupRequest? Type1336 { get; set; } + public global::Dataloop.SetProjectAccountRequest? Type1336 { get; set; } /// /// /// - public global::Dataloop.UpdateGroupRequest? Type1337 { get; set; } + public global::Dataloop.AddOrgToProjectRequest? Type1337 { get; set; } /// /// /// - public global::Dataloop.QueryEntitiesRequest? Type1338 { get; set; } + public global::Dataloop.AddGroupRequest? Type1338 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1339 { get; set; } + public global::Dataloop.UpdateGroupRequest? Type1339 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1340 { get; set; } + public global::Dataloop.QueryEntitiesRequest? Type1340 { get; set; } /// /// /// - public global::Dataloop.CreateScoresRequest? Type1341 { get; set; } + public global::Dataloop.AnyOf? Type1341 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1342 { get; set; } + public global::Dataloop.AnyOf? Type1342 { get; set; } /// /// /// - public global::Dataloop.SetDefaultRequest? Type1343 { get; set; } + public global::Dataloop.CreateScoresRequest? Type1343 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1344 { get; set; } + public global::System.Collections.Generic.IList? Type1344 { get; set; } /// /// /// - public global::Dataloop.GetGlobalServicesRequestItem? Type1345 { get; set; } + public global::Dataloop.SetDefaultRequest? Type1345 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1346 { get; set; } + public global::System.Collections.Generic.IList? Type1346 { get; set; } /// /// /// - public global::Dataloop.RolloutServiceRequest? Type1347 { get; set; } + public global::Dataloop.GetGlobalServicesRequestItem? Type1347 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1348 { get; set; } + public global::System.Collections.Generic.IList? Type1348 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1349 { get; set; } + public global::Dataloop.RolloutServiceRequest? Type1349 { get; set; } /// /// /// - public global::Dataloop.DeleteSettingRequest? Type1350 { get; set; } + public global::Dataloop.AnyOf? Type1350 { get; set; } /// /// /// - public global::Dataloop.GetProjectsActiveCountersRequest2? Type1351 { get; set; } + public global::Dataloop.AnyOf? Type1351 { get; set; } /// /// /// - public global::Dataloop.GetCountersForProjectRequest2? Type1352 { get; set; } + public global::Dataloop.DeleteSettingRequest? Type1352 { get; set; } /// /// /// - public global::Dataloop.UpdateUserOrgRequest? Type1353 { get; set; } + public global::Dataloop.GetProjectsActiveCountersRequest2? Type1353 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1354 { get; set; } + public global::Dataloop.GetCountersForProjectRequest2? Type1354 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1355 { get; set; } + public global::Dataloop.UpdateUserOrgRequest? Type1355 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1356 { get; set; } + public global::System.Collections.Generic.IList? Type1356 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1357 { get; set; } + public global::Dataloop.AnyOf? Type1357 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1358 { get; set; } + public global::Dataloop.AnyOf? Type1358 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1359 { get; set; } + public global::System.Collections.Generic.IList? Type1359 { get; set; } /// /// /// - public global::Dataloop.CreateApiKeyResponse? Type1360 { get; set; } + public global::Dataloop.AnyOf? Type1360 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1361 { get; set; } + public global::System.Collections.Generic.IList? Type1361 { get; set; } /// /// /// - public global::Dataloop.UpdateResponse? Type1362 { get; set; } + public global::Dataloop.CreateApiKeyResponse? Type1362 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1363 { get; set; } + public global::System.Collections.Generic.IList? Type1363 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type1364 { get; set; } + public global::Dataloop.UpdateResponse? Type1364 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1365 { get; set; } + public global::Dataloop.AnyOf? Type1365 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1366 { get; set; } + public global::Dataloop.AnyOf>? Type1366 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1367 { get; set; } + public global::Dataloop.AnyOf? Type1367 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1368 { get; set; } + public global::System.Collections.Generic.IList? Type1368 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1369 { get; set; } + public global::System.Collections.Generic.IList? Type1369 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1370 { get; set; } + public global::System.Collections.Generic.IList? Type1370 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1371 { get; set; } + public global::System.Collections.Generic.IList? Type1371 { get; set; } /// /// /// - public global::Dataloop.GetDatasetsByProjectIdsResponse? Type1372 { get; set; } + public global::Dataloop.AnyOf? Type1372 { get; set; } /// /// /// - public global::Dataloop.ListExportHistoryResponse? Type1373 { get; set; } + public global::System.Collections.Generic.IList? Type1373 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1374 { get; set; } + public global::Dataloop.GetDatasetsByProjectIdsResponse? Type1374 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1375 { get; set; } + public global::Dataloop.ListExportHistoryResponse? Type1375 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1376 { get; set; } + public global::System.Collections.Generic.IList? Type1376 { get; set; } /// /// /// - public global::Dataloop.AnyOf>? Type1377 { get; set; } + public global::Dataloop.AnyOf? Type1377 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1378 { get; set; } + public global::System.Collections.Generic.IList? Type1378 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1379 { get; set; } + public global::Dataloop.AnyOf>? Type1379 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1380 { get; set; } + public global::System.Collections.Generic.IList>? Type1380 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1381 { get; set; } + public global::Dataloop.AnyOf? Type1381 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1382 { get; set; } + public global::Dataloop.AnyOf? Type1382 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1383 { get; set; } + public global::Dataloop.AnyOf? Type1383 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1384 { get; set; } + public global::System.Collections.Generic.IList? Type1384 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1385 { get; set; } + public global::Dataloop.AnyOf? Type1385 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1386 { get; set; } + public global::Dataloop.AnyOf? Type1386 { get; set; } /// /// /// - public global::Dataloop.PublishModelMetricsResponse? Type1387 { get; set; } + public global::System.Collections.Generic.IList? Type1387 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type1388 { get; set; } + public global::System.Collections.Generic.IList? Type1388 { get; set; } /// /// /// - public global::Dataloop.ModelsDatasetsCountResponse? Type1389 { get; set; } + public global::Dataloop.PublishModelMetricsResponse? Type1389 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1390 { get; set; } + public global::System.Collections.Generic.Dictionary? Type1390 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1391 { get; set; } + public global::Dataloop.ModelsDatasetsCountResponse? Type1391 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1392 { get; set; } + public global::Dataloop.AnyOf? Type1392 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1393 { get; set; } + public global::System.Collections.Generic.IList? Type1393 { get; set; } /// /// /// - public global::Dataloop.GetAvailableIntegrationsResponseItemVariant1? Type1394 { get; set; } + public global::System.Collections.Generic.IList>? Type1394 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1395 { get; set; } + public global::Dataloop.AnyOf? Type1395 { get; set; } /// /// /// - public global::Dataloop.GetAvailableIntegrationsResponseItemVariant1Option? Type1396 { get; set; } + public global::Dataloop.GetAvailableIntegrationsResponseItemVariant1? Type1396 { get; set; } /// /// /// - public global::Dataloop.GetAvailableIntegrationsResponseItemVariant2? Type1397 { get; set; } + public global::System.Collections.Generic.IList? Type1397 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1398 { get; set; } + public global::Dataloop.GetAvailableIntegrationsResponseItemVariant1Option? Type1398 { get; set; } /// /// /// - public global::Dataloop.GetAvailableIntegrationsResponseItemVariant2Option? Type1399 { get; set; } + public global::Dataloop.GetAvailableIntegrationsResponseItemVariant2? Type1399 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1400 { get; set; } + public global::System.Collections.Generic.IList? Type1400 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1401 { get; set; } + public global::Dataloop.GetAvailableIntegrationsResponseItemVariant2Option? Type1401 { get; set; } /// /// /// - public global::Dataloop.QueryPipelineTableResponseItem? Type1402 { get; set; } + public global::System.Collections.Generic.IList? Type1402 { get; set; } /// /// /// - public global::Dataloop.QueryPipelineTableResponseItemTemplate? Type1403 { get; set; } + public global::System.Collections.Generic.IList? Type1403 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1404 { get; set; } + public global::Dataloop.QueryPipelineTableResponseItem? Type1404 { get; set; } /// /// /// - public global::Dataloop.TerminateResponse? Type1405 { get; set; } + public global::Dataloop.QueryPipelineTableResponseItemTemplate? Type1405 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1406 { get; set; } + public global::Dataloop.AnyOf? Type1406 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1407 { get; set; } + public global::Dataloop.TerminateResponse? Type1407 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1408 { get; set; } + public global::System.Collections.Generic.IList? Type1408 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1409 { get; set; } + public global::System.Collections.Generic.IList? Type1409 { get; set; } /// /// /// - public global::Dataloop.AnyOf, object>? Type1410 { get; set; } + public global::System.Collections.Generic.IList? Type1410 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1411 { get; set; } + public global::System.Collections.Generic.IList? Type1411 { get; set; } /// /// /// - public global::Dataloop.AnyOf, object>? Type1412 { get; set; } + public global::Dataloop.AnyOf, object>? Type1412 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1413 { get; set; } + public global::System.Collections.Generic.IList? Type1413 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1414 { get; set; } + public global::Dataloop.AnyOf, object>? Type1414 { get; set; } /// /// /// - public global::Dataloop.QueryConfusionResponse? Type1415 { get; set; } + public global::System.Collections.Generic.IList? Type1415 { get; set; } /// /// /// - public global::Dataloop.GetTaskScoresResponse? Type1416 { get; set; } + public global::System.Collections.Generic.IList? Type1416 { get; set; } /// /// /// - public global::Dataloop.GetTaskAnnotationScoresResponse? Type1417 { get; set; } + public global::Dataloop.QueryConfusionResponse? Type1417 { get; set; } /// /// /// - public global::Dataloop.GetTaskItemScoresResponse? Type1418 { get; set; } + public global::Dataloop.GetTaskScoresResponse? Type1418 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1419 { get; set; } + public global::Dataloop.GetTaskAnnotationScoresResponse? Type1419 { get; set; } /// /// /// - public global::Dataloop.GetGlobalServicesResponseItem? Type1420 { get; set; } + public global::Dataloop.GetTaskItemScoresResponse? Type1420 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type1421 { get; set; } + public global::System.Collections.Generic.IList? Type1421 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1422 { get; set; } + public global::Dataloop.GetGlobalServicesResponseItem? Type1422 { get; set; } /// /// /// - public global::Dataloop.ServiceStreamResponse? Type1423 { get; set; } + public global::System.Collections.Generic.Dictionary? Type1423 { get; set; } /// /// /// - public global::Dataloop.GetServiceIntegrationEnvResponse? Type1424 { get; set; } + public global::Dataloop.AnyOf? Type1424 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1425 { get; set; } + public global::Dataloop.ServiceStreamResponse? Type1425 { get; set; } /// /// /// - public global::Dataloop.GetServiceIntegrationEnvResponseEnvItem? Type1426 { get; set; } + public global::Dataloop.GetServiceIntegrationEnvResponse? Type1426 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1427 { get; set; } + public global::System.Collections.Generic.IList? Type1427 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1428 { get; set; } + public global::Dataloop.GetServiceIntegrationEnvResponseEnvItem? Type1428 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1429 { get; set; } + public global::Dataloop.AnyOf? Type1429 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1430 { get; set; } + public global::System.Collections.Generic.IList>? Type1430 { get; set; } /// /// /// - public global::Dataloop.GetMyGroupProjectsResponseItem? Type1431 { get; set; } + public global::System.Collections.Generic.IList? Type1431 { get; set; } /// /// /// - public global::Dataloop.AnyOf? Type1432 { get; set; } + public global::System.Collections.Generic.IList? Type1432 { get; set; } + /// + /// + /// + public global::Dataloop.GetMyGroupProjectsResponseItem? Type1433 { get; set; } + /// + /// + /// + public global::Dataloop.AnyOf? Type1434 { get; set; } /// /// diff --git a/src/libs/Dataloop/Generated/Dataloop.Models.CreateIntegrationRequest.g.cs b/src/libs/Dataloop/Generated/Dataloop.Models.CreateIntegrationRequest.g.cs index 227aa7d..16395a6 100644 --- a/src/libs/Dataloop/Generated/Dataloop.Models.CreateIntegrationRequest.g.cs +++ b/src/libs/Dataloop/Generated/Dataloop.Models.CreateIntegrationRequest.g.cs @@ -12,7 +12,8 @@ public sealed partial class CreateIntegrationRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - public global::Dataloop.IKeyValueMetadata? Metadata { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Dataloop.JsonConverters.IntegrationTypeMetadataJsonConverter))] + public global::Dataloop.IntegrationTypeMetadata? Metadata { get; set; } /// /// @@ -56,7 +57,7 @@ public CreateIntegrationRequest( global::Dataloop.Dictionary options, string name, global::Dataloop.IntegrationType2 type, - global::Dataloop.IKeyValueMetadata? metadata) + global::Dataloop.IntegrationTypeMetadata? metadata) { this.Metadata = metadata; this.Options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/libs/Dataloop/Generated/Dataloop.Models.IS3ApiMetadata.Json.g.cs b/src/libs/Dataloop/Generated/Dataloop.Models.IS3ApiMetadata.Json.g.cs new file mode 100644 index 0000000..caa1cad --- /dev/null +++ b/src/libs/Dataloop/Generated/Dataloop.Models.IS3ApiMetadata.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace Dataloop +{ + public sealed partial class IS3ApiMetadata + { + /// + /// 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 generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::Dataloop.SourceGenerationContext.Default); + } + + /// + /// 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) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::Dataloop.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::Dataloop.IS3ApiMetadata? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::Dataloop.IS3ApiMetadata), + jsonSerializerContext) as global::Dataloop.IS3ApiMetadata; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::Dataloop.IS3ApiMetadata? FromJson( + string json) + { + return FromJson( + json, + global::Dataloop.SourceGenerationContext.Default); + } + + /// + /// 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::Dataloop.IS3ApiMetadata? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::Dataloop.SourceGenerationContext.Default); + } + + 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::Dataloop.IS3ApiMetadata), + jsonSerializerContext).ConfigureAwait(false)) as global::Dataloop.IS3ApiMetadata; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::Dataloop.SourceGenerationContext.Default); + } + + /// + /// 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) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::Dataloop.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/Dataloop/Generated/Dataloop.Models.IS3ApiMetadata.g.cs b/src/libs/Dataloop/Generated/Dataloop.Models.IS3ApiMetadata.g.cs new file mode 100644 index 0000000..50c9904 --- /dev/null +++ b/src/libs/Dataloop/Generated/Dataloop.Models.IS3ApiMetadata.g.cs @@ -0,0 +1,53 @@ + +#nullable enable + +namespace Dataloop +{ + /// + /// + /// + public sealed partial class IS3ApiMetadata + { + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("endpoint")] + public string? Endpoint { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("region")] + public string? Region { 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. + /// + /// + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public IS3ApiMetadata( + string? endpoint, + string? region) + { + this.Endpoint = endpoint; + this.Region = region; + } + + /// + /// Initializes a new instance of the class. + /// + public IS3ApiMetadata() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/Dataloop/Generated/Dataloop.Models.IntegrationTypeMetadata.Json.g.cs b/src/libs/Dataloop/Generated/Dataloop.Models.IntegrationTypeMetadata.Json.g.cs new file mode 100644 index 0000000..d75cc72 --- /dev/null +++ b/src/libs/Dataloop/Generated/Dataloop.Models.IntegrationTypeMetadata.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace Dataloop +{ + public readonly partial struct IntegrationTypeMetadata + { + /// + /// 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 generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::Dataloop.SourceGenerationContext.Default); + } + + /// + /// 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) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::Dataloop.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::Dataloop.IntegrationTypeMetadata? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::Dataloop.IntegrationTypeMetadata), + jsonSerializerContext) as global::Dataloop.IntegrationTypeMetadata?; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::Dataloop.IntegrationTypeMetadata? FromJson( + string json) + { + return FromJson( + json, + global::Dataloop.SourceGenerationContext.Default); + } + + /// + /// 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::Dataloop.IntegrationTypeMetadata? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::Dataloop.SourceGenerationContext.Default); + } + + 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::Dataloop.IntegrationTypeMetadata), + jsonSerializerContext).ConfigureAwait(false)) as global::Dataloop.IntegrationTypeMetadata?; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::Dataloop.SourceGenerationContext.Default); + } + + /// + /// 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) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::Dataloop.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/Dataloop/Generated/Dataloop.Models.IntegrationTypeMetadata.g.cs b/src/libs/Dataloop/Generated/Dataloop.Models.IntegrationTypeMetadata.g.cs new file mode 100644 index 0000000..50dbe2b --- /dev/null +++ b/src/libs/Dataloop/Generated/Dataloop.Models.IntegrationTypeMetadata.g.cs @@ -0,0 +1,295 @@ +#pragma warning disable CS0618 // Type or member is obsolete + +#nullable enable + +namespace Dataloop +{ + /// + /// + /// + public readonly partial struct IntegrationTypeMetadata : global::System.IEquatable + { + /// + /// + /// +#if NET6_0_OR_GREATER + public global::Dataloop.IKeyValueMetadata? IKeyValue { get; init; } +#else + public global::Dataloop.IKeyValueMetadata? IKeyValue { get; } +#endif + + /// + /// + /// +#if NET6_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(IKeyValue))] +#endif + public bool IsIKeyValue => IKeyValue != null; + + /// + /// + /// + public bool TryPickIKeyValue( +#if NET6_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.NotNullWhen(true)] +#endif + out global::Dataloop.IKeyValueMetadata? value) + { + value = IKeyValue; + return IsIKeyValue; + } + + /// + /// + /// + public global::Dataloop.IKeyValueMetadata PickIKeyValue() => IsIKeyValue + ? IKeyValue! + : throw new global::System.InvalidOperationException($"Expected union variant 'IKeyValue' but the value was {ToString()}."); + + /// + /// + /// +#if NET6_0_OR_GREATER + public global::Dataloop.IS3ApiMetadata? IS3Api { get; init; } +#else + public global::Dataloop.IS3ApiMetadata? IS3Api { get; } +#endif + + /// + /// + /// +#if NET6_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(IS3Api))] +#endif + public bool IsIS3Api => IS3Api != null; + + /// + /// + /// + public bool TryPickIS3Api( +#if NET6_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.NotNullWhen(true)] +#endif + out global::Dataloop.IS3ApiMetadata? value) + { + value = IS3Api; + return IsIS3Api; + } + + /// + /// + /// + public global::Dataloop.IS3ApiMetadata PickIS3Api() => IsIS3Api + ? IS3Api! + : throw new global::System.InvalidOperationException($"Expected union variant 'IS3Api' but the value was {ToString()}."); + /// + /// + /// + public static implicit operator IntegrationTypeMetadata(global::Dataloop.IKeyValueMetadata value) => new IntegrationTypeMetadata((global::Dataloop.IKeyValueMetadata?)value); + + /// + /// + /// + public static implicit operator global::Dataloop.IKeyValueMetadata?(IntegrationTypeMetadata @this) => @this.IKeyValue; + + /// + /// + /// + public IntegrationTypeMetadata(global::Dataloop.IKeyValueMetadata? value) + { + IKeyValue = value; + } + + /// + /// + /// + public static IntegrationTypeMetadata FromIKeyValue(global::Dataloop.IKeyValueMetadata? value) => new IntegrationTypeMetadata(value); + + /// + /// + /// + public static implicit operator IntegrationTypeMetadata(global::Dataloop.IS3ApiMetadata value) => new IntegrationTypeMetadata((global::Dataloop.IS3ApiMetadata?)value); + + /// + /// + /// + public static implicit operator global::Dataloop.IS3ApiMetadata?(IntegrationTypeMetadata @this) => @this.IS3Api; + + /// + /// + /// + public IntegrationTypeMetadata(global::Dataloop.IS3ApiMetadata? value) + { + IS3Api = value; + } + + /// + /// + /// + public static IntegrationTypeMetadata FromIS3Api(global::Dataloop.IS3ApiMetadata? value) => new IntegrationTypeMetadata(value); + + /// + /// + /// + public IntegrationTypeMetadata( + global::Dataloop.IKeyValueMetadata? iKeyValue, + global::Dataloop.IS3ApiMetadata? iS3Api + ) + { + IKeyValue = iKeyValue; + IS3Api = iS3Api; + } + + /// + /// + /// + public object? Object => + IS3Api as object ?? + IKeyValue as object + ; + + /// + /// + /// + public override string? ToString() => + IKeyValue?.ToString() ?? + IS3Api?.ToString() + ; + + /// + /// + /// + public bool Validate() + { + return IsIKeyValue || IsIS3Api; + } + + /// + /// + /// + public TResult? Match( + global::System.Func? iKeyValue = null, + global::System.Func? iS3Api = null, + bool validate = true) + { + if (validate) + { + Validate(); + } + + if (IsIKeyValue && iKeyValue != null) + { + return iKeyValue(IKeyValue!); + } + else if (IsIS3Api && iS3Api != null) + { + return iS3Api(IS3Api!); + } + + return default(TResult); + } + + /// + /// + /// + public void Match( + global::System.Action? iKeyValue = null, + + global::System.Action? iS3Api = null, + bool validate = true) + { + if (validate) + { + Validate(); + } + + if (IsIKeyValue) + { + iKeyValue?.Invoke(IKeyValue!); + } + else if (IsIS3Api) + { + iS3Api?.Invoke(IS3Api!); + } + } + + /// + /// + /// + public void Switch( + global::System.Action? iKeyValue = null, + global::System.Action? iS3Api = null, + bool validate = true) + { + if (validate) + { + Validate(); + } + + if (IsIKeyValue) + { + iKeyValue?.Invoke(IKeyValue!); + } + else if (IsIS3Api) + { + iS3Api?.Invoke(IS3Api!); + } + } + + /// + /// + /// + public override int GetHashCode() + { + var fields = new object?[] + { + IKeyValue, + typeof(global::Dataloop.IKeyValueMetadata), + IS3Api, + typeof(global::Dataloop.IS3ApiMetadata), + }; + const int offset = unchecked((int)2166136261); + const int prime = 16777619; + static int HashCodeAggregator(int hashCode, object? value) => value == null + ? (hashCode ^ 0) * prime + : (hashCode ^ value.GetHashCode()) * prime; + + return global::System.Linq.Enumerable.Aggregate(fields, offset, HashCodeAggregator); + } + + /// + /// + /// + public bool Equals(IntegrationTypeMetadata other) + { + return + global::System.Collections.Generic.EqualityComparer.Default.Equals(IKeyValue, other.IKeyValue) && + global::System.Collections.Generic.EqualityComparer.Default.Equals(IS3Api, other.IS3Api) + ; + } + + /// + /// + /// + public static bool operator ==(IntegrationTypeMetadata obj1, IntegrationTypeMetadata obj2) + { + return global::System.Collections.Generic.EqualityComparer.Default.Equals(obj1, obj2); + } + + /// + /// + /// + public static bool operator !=(IntegrationTypeMetadata obj1, IntegrationTypeMetadata obj2) + { + return !(obj1 == obj2); + } + + /// + /// + /// + public override bool Equals(object? obj) + { + return obj is IntegrationTypeMetadata o && Equals(o); + } + } +} diff --git a/src/libs/Dataloop/Generated/Dataloop.Models.ResourceType.g.cs b/src/libs/Dataloop/Generated/Dataloop.Models.ResourceType.g.cs index 82f2055..5b30262 100644 --- a/src/libs/Dataloop/Generated/Dataloop.Models.ResourceType.g.cs +++ b/src/libs/Dataloop/Generated/Dataloop.Models.ResourceType.g.cs @@ -55,6 +55,10 @@ public enum ResourceType /// /// /// + FeatureVectors, + /// + /// + /// Groups, /// /// @@ -157,6 +161,7 @@ public static string ToValueString(this ResourceType value) ResourceType.Dpk => "dpk", ResourceType.Drivers => "drivers", ResourceType.Executions => "executions", + ResourceType.FeatureVectors => "feature_vectors", ResourceType.Groups => "groups", ResourceType.Integrations => "integrations", ResourceType.Items => "items", @@ -198,6 +203,7 @@ public static string ToValueString(this ResourceType value) "dpk" => ResourceType.Dpk, "drivers" => ResourceType.Drivers, "executions" => ResourceType.Executions, + "feature_vectors" => ResourceType.FeatureVectors, "groups" => ResourceType.Groups, "integrations" => ResourceType.Integrations, "items" => ResourceType.Items, diff --git a/src/libs/Dataloop/Generated/Dataloop.OrgIntegrationsClient.CreateIntegration.g.cs b/src/libs/Dataloop/Generated/Dataloop.OrgIntegrationsClient.CreateIntegration.g.cs index b6ed033..ef44058 100644 --- a/src/libs/Dataloop/Generated/Dataloop.OrgIntegrationsClient.CreateIntegration.g.cs +++ b/src/libs/Dataloop/Generated/Dataloop.OrgIntegrationsClient.CreateIntegration.g.cs @@ -524,7 +524,7 @@ partial void ProcessCreateIntegrationResponseContent( global::Dataloop.Dictionary options, string name, global::Dataloop.IntegrationType2 type, - global::Dataloop.IKeyValueMetadata? metadata = default, + global::Dataloop.IntegrationTypeMetadata? metadata = default, global::Dataloop.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/libs/Dataloop/Generated/autosdk.generated-examples.json b/src/libs/Dataloop/Generated/autosdk.generated-examples.json index 16a2862..a4a2ac1 100644 --- a/src/libs/Dataloop/Generated/autosdk.generated-examples.json +++ b/src/libs/Dataloop/Generated/autosdk.generated-examples.json @@ -358,7 +358,7 @@ "Slug": "create-integration", "Description": "Create a new Integration", "Language": "http", - "Code": "### Create a new Integration\n# @name Create integration\nPOST {{host}}/orgs/{{orgId}}/integrations\nAuthorization: Bearer {{token}}\nContent-Type: application/json\nAccept: application/json\n\n{\n \u0022metadata\u0022: {\n \u0022ref\u0022: \u0022string\u0022,\n \u0022provider\u0022: \u0022string\u0022\n },\n \u0022options\u0022: {},\n \u0022name\u0022: \u0022string\u0022,\n \u0022type\u0022: \u0022s3\u0022\n}\n\n## Responses\n# 200\n# Description: Ok\n# Content-Type: application/json", + "Code": "### Create a new Integration\n# @name Create integration\nPOST {{host}}/orgs/{{orgId}}/integrations\nAuthorization: Bearer {{token}}\nContent-Type: application/json\nAccept: application/json\n\n{\n \u0022metadata\u0022: {},\n \u0022options\u0022: {},\n \u0022name\u0022: \u0022string\u0022,\n \u0022type\u0022: \u0022s3\u0022\n}\n\n## Responses\n# 200\n# Description: Ok\n# Content-Type: application/json", "Format": "http", "OperationId": "Create integration", "Setup": null diff --git a/src/libs/Dataloop/openapi.yaml b/src/libs/Dataloop/openapi.yaml index 5aa487a..5205616 100644 --- a/src/libs/Dataloop/openapi.yaml +++ b/src/libs/Dataloop/openapi.yaml @@ -11919,8 +11919,27 @@ "type": "object", "additionalProperties": true }, + "IS3ApiMetadata": { + "properties": { + "endpoint": { + "type": "string" + }, + "region": { + "type": "string" + } + }, + "type": "object", + "additionalProperties": true + }, "IntegrationTypeMetadata": { - "$ref": "#/components/schemas/IKeyValueMetadata" + "anyOf": [ + { + "$ref": "#/components/schemas/IKeyValueMetadata" + }, + { + "$ref": "#/components/schemas/IS3ApiMetadata" + } + ] }, "IntegrationMetadataBody": { "properties": { @@ -15706,7 +15725,8 @@ "subscriptions", "accounts", "drivers", - "annotations.status" + "annotations.status", + "feature_vectors" ], "type": "string" },