diff --git a/cmd/root_cmd/push.go b/cmd/root_cmd/push.go index 60165319..34bb9622 100644 --- a/cmd/root_cmd/push.go +++ b/cmd/root_cmd/push.go @@ -62,17 +62,19 @@ Examples: # Push a new version non-interactively leap push -n my-model -m ./model.h5 - # Overwrite an existing version by id, run eval (auto-detects changes) + # Overwrite an existing version by id, then prompt for what changed leap push -o 6a16a0cf -e # Overwrite by name — picker opens if the name is ambiguous leap push -o my-model -e - # Overwrite + force a specific artifact refresh (implies --eval) + # Overwrite + name what changed (implies --eval; skips the prompt) leap push -o my-model -u viz + leap push -o my-model -u metric_direction + leap push -o my-model -u metric # triggers a full re-evaluation # Refresh multiple artifacts in one run - leap push -o my-model -u metadata -u insights + leap push -o my-model -u visualization -u insights `, RunE: func(cmd *cobra.Command, args []string) error { return runPush(cmd.Context(), in) @@ -91,7 +93,7 @@ Examples: cmd.Flags().StringVarP(&in.overwriteVersionRef, "overwrite", "o", "", "Overwrite an existing version (id, or name — picker shown if name is ambiguous)") cmd.Flags().StringVar(&in.overwriteVersionRef, "overwrite-version", "", "") _ = cmd.Flags().MarkDeprecated("overwrite-version", "use --overwrite (-o) instead") - cmd.Flags().StringSliceVarP(&in.updateParts, "update", "u", nil, "Artifact(s) to refresh on overwrite (repeatable; implies --eval). Values: metadata, metric, insights, visualization (viz)") + cmd.Flags().StringSliceVarP(&in.updateParts, "update", "u", nil, "What changed in the code on overwrite (repeatable; implies --eval; skips the prompt). Values: metadata, metric, metric_direction, insights, visualization (viz). metadata+metric trigger a full re-evaluation.") return cmd } @@ -122,7 +124,7 @@ func runPush(cmdCtx context.Context, in *pushInputs) error { return err } - evalBatchSize, updateActions, runUpdateEvaluate, err := s.resolveEvalPlan() + dispatch, err := s.resolveEvalPlan() if err != nil { return err } @@ -138,7 +140,7 @@ func runPush(cmdCtx context.Context, in *pushInputs) error { s.sendSuccessEvent(codeResp, codePushed) - return s.triggerEvaluate(codeResp.VersionId, evalBatchSize, updateActions, runUpdateEvaluate) + return s.triggerEvaluate(codeResp.VersionId, dispatch) } func validatePushInputs(in *pushInputs) error { @@ -273,50 +275,62 @@ func (s *pushState) syncBranchSecretAndPython() error { return nil } -func (s *pushState) resolveEvalPlan() (batchSize int, updateActions []tensorleapapi.UpdateAction, runUpdateEvaluate bool, err error) { +type evalDispatch struct { + batchSize int + updateActions []tensorleapapi.UpdateAction + runUpdateEvaluate bool + persistOnly bool +} + +func (s *pushState) resolveEvalPlan() (evalDispatch, error) { in := s.inputs if len(in.updateParts) > 0 && !s.isOverwrite { - err = fmt.Errorf("--update (-u) only applies when overwriting an existing version (use --overwrite or choose overwrite in the prompt)") - return - } - if !in.runEval { - return + return evalDispatch{}, fmt.Errorf("--update (-u) only applies when overwriting an existing version (use --overwrite or choose overwrite in the prompt)") } + if !s.isOverwrite { - batchSize, err = s.askOrDefaultBatchSize() - return + if !in.runEval { + return evalDispatch{}, nil + } + batchSize, err := s.askOrDefaultBatchSize() + return evalDispatch{batchSize: batchSize}, err } - plan, planErr := s.resolveOverwriteEvalPlan() - if planErr != nil { - err = planErr - return + plan, err := s.resolveOverwriteEvalPlan() + if err != nil { + return evalDispatch{}, err + } + + if !in.runEval { + return evalDispatch{updateActions: plan.UpdateActions, persistOnly: true}, nil } + if plan.Kind == model.EvaluatePlanReset { - batchSize, err = s.askOrDefaultBatchSize() - return + batchSize, err := s.askOrDefaultBatchSize() + return evalDispatch{batchSize: batchSize, updateActions: plan.UpdateActions}, err } - updateActions = plan.UpdateActions - runUpdateEvaluate = true - return + return evalDispatch{updateActions: plan.UpdateActions, runUpdateEvaluate: true}, nil } func (s *pushState) resolveOverwriteEvalPlan() (model.EvaluatePlan, error) { + plan, err := s.collectUserUpdatePlan() + if err != nil { + return model.EvaluatePlan{}, err + } + if s.inputs.runEval && plan.Kind == model.EvaluatePlanUpdate && !s.canUpdateEvaluate() { + log.Info("No evaluation data found in the override chain — running a fresh evaluate.") + return model.EvaluatePlan{Kind: model.EvaluatePlanReset, UpdateActions: plan.UpdateActions}, nil + } + return plan, nil +} + +func (s *pushState) collectUserUpdatePlan() (model.EvaluatePlan, error) { if len(s.inputs.updateParts) > 0 { parsed, err := model.ParseUpdateActionsFromFlags(s.inputs.updateParts) if err != nil { return model.EvaluatePlan{}, err } - plan := model.PlanFromUpdateActions(parsed) - if plan.Kind == model.EvaluatePlanUpdate && !s.canUpdateEvaluate() { - log.Info("No evaluation data found in the override chain — running a fresh evaluate.") - return model.EvaluatePlan{Kind: model.EvaluatePlanReset}, nil - } - return plan, nil - } - if !s.canUpdateEvaluate() { - log.Info("No evaluation data found in the override chain — running a fresh evaluate.") - return model.EvaluatePlan{Kind: model.EvaluatePlanReset}, nil + return model.PlanFromUpdateActions(parsed), nil } plan, err := model.AskForEvaluatePlan() if err != nil { @@ -448,17 +462,23 @@ func (s *pushState) sendSuccessEvent(codeResp *tensorleapapi.PushCodeSnapshotRes analytics.SendEvent(analytics.EventCliProjectsPushSuccess, s.properties) } -func (s *pushState) triggerEvaluate(versionId string, batchSize int, updateActions []tensorleapapi.UpdateAction, runUpdateEvaluate bool) error { +func (s *pushState) triggerEvaluate(versionId string, dispatch evalDispatch) error { + if dispatch.persistOnly { + if len(dispatch.updateActions) == 0 { + return nil + } + return model.PersistUpdateActions(s.ctx, s.projectId(), versionId, dispatch.updateActions) + } if !s.inputs.runEval { return nil } - if runUpdateEvaluate { - if err := model.RunUpdateEvaluateArtifact(s.ctx, s.projectId(), versionId, updateActions); err != nil { + if dispatch.runUpdateEvaluate { + if err := model.RunUpdateEvaluateArtifact(s.ctx, s.projectId(), versionId, dispatch.updateActions); err != nil { return fmt.Errorf("failed to run update evaluate: %w", err) } return nil } - if err := model.RunEvaluate(s.ctx, s.projectId(), versionId, batchSize); err != nil { + if err := model.RunEvaluate(s.ctx, s.projectId(), versionId, dispatch.batchSize); err != nil { return fmt.Errorf("failed to run evaluation: %w", err) } return nil diff --git a/docs/push-examples.md b/docs/push-examples.md index f0554906..b1bd5fbc 100644 --- a/docs/push-examples.md +++ b/docs/push-examples.md @@ -47,45 +47,58 @@ lists the candidate ids so you can re-run with the exact one. leap push -o my-model -e ``` -You'll get a multi-select prompt for what you changed (only edits the -engine can't auto-detect): +You'll get a multi-select prompt for what to update — engine no longer +auto-detects, so you pick what to refresh: ``` -? What did you change in your code? (auto-detected: added meta/viz, metric-direction, insight-config) +? What do you want to update? [Use arrows to move, space to select, type to filter] - [ ] Edited an existing metadata - [ ] Edited an existing visualization - [ ] Added or edited a metric - [ ] Force re-run insights + [ ] Metadata — full re-eval + [ ] Metric — full re-eval + [ ] Metric direction + [ ] Visualizations + [ ] Insights ``` Then a plan summary: ``` This will: - • Update visualizations - • Auto-detect added meta/viz, metric-direction, insight-config + • Regenerate visualizations +``` + +If you pick metadata or metric, the plan collapses to: + +``` +This will: + • Re-evaluate (full) ``` ## Skip the prompt — name the artifacts explicitly -`--update` (`-u`) tells `leap push` exactly which artifacts to refresh. +`--update` (`-u`) tells `leap push` exactly what changed in the code. It **implies `--eval`** — you no longer need both flags. ```bash -leap push -o my-model -u viz # regenerate visualizations only -leap push -o my-model -u metadata -u insights # refresh both -leap push -o my-model -u metric # full re-evaluation triggered by metric change +leap push -o my-model -u viz # regenerate visualizations only +leap push -o my-model -u metric_direction # cheap metric-direction patch +leap push -o my-model -u metric # triggers a full re-evaluation +leap push -o my-model -u metadata # triggers a full re-evaluation +leap push -o my-model -u visualization -u insights # refresh both ``` Accepted values (case-insensitive): -| short | full (still accepted) | -| -------------- | --------------------- | -| `metadata` | `update_metadata` | -| `metric` | `update_metric` | -| `insights` | `update_insights` | -| `visualization` / `viz` | `update_visualization` | +| short | full (still accepted) | +| ------------------------ | ------------------------- | +| `metadata` | `update_metadata` | +| `metric` | `update_metric` | +| `metric_direction` / `direction` | `update_metric_direction` | +| `insights` | `update_insights` | +| `visualization` / `viz` | `update_visualization` | + +`metadata` and `metric` always trigger a fresh evaluation — +update_evaluate doesn't support them today. ## Overwrite without evaluating @@ -93,16 +106,18 @@ Accepted values (case-insensitive): leap push -o my-model # no --eval, no --update ``` -When you overwrite without `--eval`, the CLI reminds you that -evaluation isn't automatic: +You still get the multi-select prompt — the answer is recorded on the +version so the next time someone (UI, another CLI run) runs an +evaluation against this version they see your declared intent. ``` NOTE: Overwriting replaces the version. Use the update-evaluate dialog in the UI to re-evaluate (or re-run with --eval). +Recorded update actions on version (no evaluation dispatched). ``` -The UI's update-evaluate dialog lets you drive the same diff-based -refresh interactively, post-push. +The UI's update-evaluate dialog uses the same five-action prompt as +the CLI's `--eval` flow. ## Deprecated flag still works @@ -122,5 +137,6 @@ and proceeds normally. Update your scripts at your leisure. | Overwrite by id | `leap push -o ` | | Overwrite by name | `leap push -o ` | | Overwrite + force-refresh viz | `leap push -o -u viz` | -| Overwrite + refresh metadata and insights | `leap push -o -u metadata -u insights` | -| Overwrite + full re-eval (auto-detect) | `leap push -o -e` | +| Overwrite + cheap metric-direction patch | `leap push -o -u metric_direction` | +| Overwrite + interactive prompt for what changed | `leap push -o -e` | +| Overwrite + force full re-eval | `leap push -o -u metric` | diff --git a/pkg/api/utils.go b/pkg/api/utils.go index 18ec01cc..e40da6f4 100644 --- a/pkg/api/utils.go +++ b/pkg/api/utils.go @@ -238,7 +238,7 @@ func HintVersionMismatch(err error) error { return fmt.Errorf( "%w\n\nThis may indicate a CLI/server version mismatch. "+ "Run 'leap server upgrade' on the server host to upgrade the server, "+ - "or 'leap cli upgrade -s | bash' to upgrade the CLI.", + "or 'leap cli upgrade -s | bash' to upgrade the CLI", err, ) } diff --git a/pkg/model/evaluate.go b/pkg/model/evaluate.go index b693e9d1..5a5b7f67 100644 --- a/pkg/model/evaluate.go +++ b/pkg/model/evaluate.go @@ -8,7 +8,6 @@ import ( "strings" "github.com/AlecAivazis/survey/v2" - "github.com/jedib0t/go-pretty/v6/text" "github.com/tensorleap/leap-cli/pkg/api" "github.com/tensorleap/leap-cli/pkg/log" "github.com/tensorleap/leap-cli/pkg/tensorleapapi" @@ -74,22 +73,19 @@ func AskForBatchSize(defaultBatchSize int) (int, error) { return batchSize, nil } -// updateActionAliases maps user-facing short tokens to API enum values. -// The full `update_*` spellings are still accepted via the fall-through -// to `tensorleapapi.NewUpdateActionFromValue` below — so existing -// scripts / CI invocations don't break. var updateActionAliases = map[string]tensorleapapi.UpdateAction{ - "metadata": tensorleapapi.UPDATEACTION_UPDATE_METADATA, - "metric": tensorleapapi.UPDATEACTION_UPDATE_METRIC, - "insights": tensorleapapi.UPDATEACTION_UPDATE_INSIGHTS, - "visualization": tensorleapapi.UPDATEACTION_UPDATE_VISUALIZATION, - "viz": tensorleapapi.UPDATEACTION_UPDATE_VISUALIZATION, + "metadata": tensorleapapi.UPDATEACTION_UPDATE_METADATA, + "metric": tensorleapapi.UPDATEACTION_UPDATE_METRIC, + "metric_direction": tensorleapapi.UPDATEACTION_UPDATE_METRIC_DIRECTION, + "metric-direction": tensorleapapi.UPDATEACTION_UPDATE_METRIC_DIRECTION, + "direction": tensorleapapi.UPDATEACTION_UPDATE_METRIC_DIRECTION, + "insights": tensorleapapi.UPDATEACTION_UPDATE_INSIGHTS, + "visualization": tensorleapapi.UPDATEACTION_UPDATE_VISUALIZATION, + "viz": tensorleapapi.UPDATEACTION_UPDATE_VISUALIZATION, } -// ParseUpdateActionsFromFlags maps CLI tokens to API update actions. -// Accepts both the short aliases (metadata, metric, insights, viz, -// visualization) and the full API enum spellings (update_metadata, …) -// so old `-u update_foo` invocations keep working. +const updateActionAllowedHint = "metadata, metric, metric_direction, insights, visualization, viz" + func ParseUpdateActionsFromFlags(parts []string) ([]tensorleapapi.UpdateAction, error) { if len(parts) == 0 { return nil, nil @@ -107,7 +103,7 @@ func ParseUpdateActionsFromFlags(parts []string) ([]tensorleapapi.UpdateAction, } else if full, ferr := tensorleapapi.NewUpdateActionFromValue(p); ferr == nil { act = *full } else { - return nil, fmt.Errorf("invalid --update value %q (allowed: metadata, metric, insights, visualization, viz)", raw) + return nil, fmt.Errorf("invalid --update value %q (allowed: %s)", raw, updateActionAllowedHint) } if _, ok := seen[act]; ok { continue @@ -135,80 +131,81 @@ type EvaluatePlan struct { UpdateActions []tensorleapapi.UpdateAction } -// ChangeKey is a typed token for "what kind of change happened in the -// new code snapshot". It's the input vocabulary for planUpdateEvaluate -// — using an enum (vs a `map[string]bool` of free-form strings) keeps -// typos out of the routing logic and lets the compiler enforce the -// switch arms in planUpdateEvaluate stay in sync with changeOptions. -// -// The set is intentionally narrow: only changes that the server CANNOT -// auto-detect from a graph / pickle diff. Metric direction, insights -// config, and "added new metadata / visualization" are all detected on -// the backend, so we don't ask the user about them. type ChangeKey int const ( - ChangeMetadataUpdate ChangeKey = iota - ChangeVisualizationUpdate - ChangeMetricsAddOrUpdate - ChangeForceInsights + ChangeMetadata ChangeKey = iota + ChangeMetric + ChangeMetricDirection + ChangeVisualization + ChangeInsights ) type changeOption struct { - key ChangeKey - label string - hint string + key ChangeKey + label string + hint string + action tensorleapapi.UpdateAction } var changeOptions = []changeOption{ - {key: ChangeMetadataUpdate, label: "Edited an existing metadata"}, - {key: ChangeVisualizationUpdate, label: "Edited an existing visualization"}, - {key: ChangeMetricsAddOrUpdate, label: "Added or edited a metric"}, - {key: ChangeForceInsights, label: "Force re-run insights"}, + { + key: ChangeMetadata, + label: "Metadata", + hint: "full re-eval", + action: tensorleapapi.UPDATEACTION_UPDATE_METADATA, + }, + { + key: ChangeMetric, + label: "Metric", + hint: "full re-eval", + action: tensorleapapi.UPDATEACTION_UPDATE_METRIC, + }, + { + key: ChangeMetricDirection, + label: "Metric direction", + action: tensorleapapi.UPDATEACTION_UPDATE_METRIC_DIRECTION, + }, + { + key: ChangeVisualization, + label: "Visualizations", + action: tensorleapapi.UPDATEACTION_UPDATE_VISUALIZATION, + }, + { + key: ChangeInsights, + label: "Insights", + action: tensorleapapi.UPDATEACTION_UPDATE_INSIGHTS, + }, +} + +func triggersFullReeval(a tensorleapapi.UpdateAction) bool { + return a == tensorleapapi.UPDATEACTION_UPDATE_METADATA || + a == tensorleapapi.UPDATEACTION_UPDATE_METRIC } func PlanFromUpdateActions(actions []tensorleapapi.UpdateAction) EvaluatePlan { for _, a := range actions { - if a == tensorleapapi.UPDATEACTION_UPDATE_METADATA || a == tensorleapapi.UPDATEACTION_UPDATE_METRIC { - return EvaluatePlan{Kind: EvaluatePlanReset} + if triggersFullReeval(a) { + return EvaluatePlan{Kind: EvaluatePlanReset, UpdateActions: actions} } } return EvaluatePlan{Kind: EvaluatePlanUpdate, UpdateActions: actions} } func planUpdateEvaluate(selected map[ChangeKey]bool) EvaluatePlan { - // "Updated existing metadata" and "added/updated metrics" both - // invalidate derived artifacts (detector pickles, NN indexer, - // display_pe DBs) in ways the in-place update_evaluate path can't - // patch — route to resetEvaluate, which decides in-place vs new- - // version based on whether eval data already exists. A full re-eval - // re-derives insights too, so the ForceInsights flag is redundant - // on this path. - if selected[ChangeMetricsAddOrUpdate] || selected[ChangeMetadataUpdate] { - return EvaluatePlan{Kind: EvaluatePlanReset} - } - - // update_evaluate path: visualization edit and/or force-insights. - actions := make([]tensorleapapi.UpdateAction, 0, 2) - if selected[ChangeVisualizationUpdate] { - actions = append(actions, tensorleapapi.UPDATEACTION_UPDATE_VISUALIZATION) - } - if selected[ChangeForceInsights] { - actions = append(actions, tensorleapapi.UPDATEACTION_UPDATE_INSIGHTS) + actions := make([]tensorleapapi.UpdateAction, 0, len(changeOptions)) + for _, opt := range changeOptions { + if selected[opt.key] { + actions = append(actions, opt.action) + } } - return EvaluatePlan{Kind: EvaluatePlanUpdate, UpdateActions: actions} + return PlanFromUpdateActions(actions) } func init() { - // Push the inline `[Use arrows to move, space to select, type to - // filter]` hint onto its own line below the question. The default - // `MultiSelectQuestionTemplate` glues it to the message with two - // leading spaces, which crowds long-ish messages (ours includes - // an auto-detect parenthetical) into a single hard-to-scan line. - // The only edit vs the upstream template is the whitespace before - // the `[Use arrows…` block: `{{- " "}}` (two spaces, leading - // dash strips the prior newline) → `{{ "\n " }}` (newline + - // two spaces, no leading dash so the newline survives). + // Push the inline `[Use arrows … type to filter]` hint onto its own + // line below the question; the upstream template glues it to the + // message with two leading spaces, crowding longer prompts. survey.MultiSelectQuestionTemplate = ` {{- define "option"}} {{- if eq .SelectedIndex .CurrentIndex }}{{color .Config.Icons.SelectFocus.Format }}{{ .Config.Icons.SelectFocus.Text }}{{color "reset"}}{{else}} {{end}} @@ -229,15 +226,7 @@ func init() { {{- end}}` } -// AskForEvaluatePlan prompts the user for which artifacts changed and returns the resolved plan. func AskForEvaluatePlan() (EvaluatePlan, error) { - // What the engine actually auto-detects today: added metadata - // columns, added visualizers, metric direction flips, and - // compute_insights flag changes. Edits to existing items (same - // name, new behavior) are NOT visible to the engine — they're - // what this prompt is for. The auto-detect summary is in-prompt - // (below the question), not a separate log line, to keep the - // terminal footprint minimal. labels := make([]string, len(changeOptions)) labelToKey := make(map[string]ChangeKey, len(changeOptions)) for i, opt := range changeOptions { @@ -251,19 +240,14 @@ func AskForEvaluatePlan() (EvaluatePlan, error) { var selectedLabels []string prompt := &survey.MultiSelect{ - Message: fmt.Sprintf( - "What did you change in your code? (%s: added meta/viz, metric-direction, insight-config)", - text.Bold.Sprint("auto-detected"), - ), + Message: "What do you want to update?", Options: labels, } - // Drop the ` to all` / ` to none` hints — they bloat - // the inline instruction line and the 4-option list doesn't need a - // power-user shortcut for select-all. if err := survey.AskOne( prompt, &selectedLabels, survey.WithRemoveSelectAll(), survey.WithRemoveSelectNone(), + survey.WithValidator(survey.Required), ); err != nil { return EvaluatePlan{}, err } @@ -275,10 +259,6 @@ func AskForEvaluatePlan() (EvaluatePlan, error) { return planUpdateEvaluate(selected), nil } -// FormatEvaluatePlan renders the plan as human-readable verb phrases. -// Returns an empty slice when no actions were selected on the update -// path — the engine auto-detects in that case and the caller (Print) -// surfaces a different message. func FormatEvaluatePlan(plan EvaluatePlan) []string { if plan.Kind == EvaluatePlanReset { return []string{"Re-evaluate (full)"} @@ -286,10 +266,8 @@ func FormatEvaluatePlan(plan EvaluatePlan) []string { out := make([]string, 0, len(plan.UpdateActions)) for _, a := range plan.UpdateActions { switch a { - case tensorleapapi.UPDATEACTION_UPDATE_METADATA: - out = append(out, "Update metadata") - case tensorleapapi.UPDATEACTION_UPDATE_METRIC: - out = append(out, "Update metric directions") + case tensorleapapi.UPDATEACTION_UPDATE_METRIC_DIRECTION: + out = append(out, "Update metric direction") case tensorleapapi.UPDATEACTION_UPDATE_INSIGHTS: out = append(out, "Regenerate insights") case tensorleapapi.UPDATEACTION_UPDATE_VISUALIZATION: @@ -301,22 +279,11 @@ func FormatEvaluatePlan(plan EvaluatePlan) []string { return out } -// PrintEvaluatePlan logs the resolved plan as a bulleted list using a -// single "This will:" verb across all branches so the output stays -// consistent regardless of which path planUpdateEvaluate took. The -// update path always appends an auto-detect line so the user sees the -// full picture (their selections + what the engine catches on its own). func PrintEvaluatePlan(plan EvaluatePlan) { - if plan.Kind == EvaluatePlanReset { - log.Info("This will:") - log.Info(" • Re-evaluate (full)") - return - } log.Info("This will:") for _, item := range FormatEvaluatePlan(plan) { log.Infof(" • %s", item) } - log.Info(" • Auto-detect added meta/viz, metric-direction, insight-config") } func hasOwnEvalData(v *tensorleapapi.SlimVersion) bool { @@ -539,3 +506,17 @@ func RunUpdateEvaluateArtifact(ctx context.Context, projectId, versionId string, log.Infof("Update evaluate started with job ID: %s", job.GetCid()) return nil } + +// PersistUpdateActions stores the user-declared updateActions on the version +// without dispatching an evaluation. Used when the user picks what to update +// but didn't pass --eval — the next evaluation run (via UI or another CLI +// invocation) will see the recorded intent. +func PersistUpdateActions(ctx context.Context, projectId, versionId string, updateActions []tensorleapapi.UpdateAction) error { + params := tensorleapapi.NewSetVersionUpdateActionsParams(versionId, projectId, updateActions) + _, res, err := api.ApiClient.SetVersionUpdateActions(ctx).SetVersionUpdateActionsParams(*params).Execute() + if err = api.CheckRes(res, err); err != nil { + return fmt.Errorf("failed to record update actions on version: %w", err) + } + log.Info("Recorded update actions on version (no evaluation dispatched).") + return nil +} diff --git a/pkg/model/utils.go b/pkg/model/utils.go index 80159f1a..fd3eab0f 100644 --- a/pkg/model/utils.go +++ b/pkg/model/utils.go @@ -4,6 +4,7 @@ import ( "context" "fmt" "path/filepath" + "sort" "strings" "github.com/AlecAivazis/survey/v2" @@ -138,6 +139,10 @@ func AskUserForNewVersionOrSelectExistingVersion(ctx context.Context, projectId return nil, err } + sort.SliceStable(versions, func(i, j int) bool { + return versions[i].GetUpdatedAt().After(versions[j].GetUpdatedAt()) + }) + runsStatusesPerVersionId, err := GetRunsStatusesPerVersionId(ctx, projectId) if err != nil { return nil, err diff --git a/pkg/tensorleapapi/.openapi-generator/FILES b/pkg/tensorleapapi/.openapi-generator/FILES index 1a81158e..e5ce3ad5 100644 --- a/pkg/tensorleapapi/.openapi-generator/FILES +++ b/pkg/tensorleapapi/.openapi-generator/FILES @@ -1,5 +1,4 @@ .gitignore -.openapi-generator-ignore .travis.yml README.md api/openapi.yaml @@ -54,6 +53,7 @@ docs/CollectionFilterSpec.md docs/CollectionFilterSpecHiddenValuesInner.md docs/CollectionFilterSpecRange.md docs/CollectionIndexStatus.md +docs/CollectionPopulationStatus.md docs/CollectionSampleRow.md docs/CollectionSampleRowValue.md docs/CollectionSortSpec.md @@ -429,6 +429,8 @@ docs/SetExperimentPropertiesRequest.md docs/SetSettingValueWrapper.md docs/SetTeamMachineTypeParams.md docs/SetUserNotificationsAsRead200Response.md +docs/SetVersionUpdateActionsParams.md +docs/SetVersionUpdateActionsResponse.md docs/SettingSchema.md docs/SettingValue.md docs/SettingsAndValuesWrapper.md @@ -466,6 +468,7 @@ docs/TrashSecretManagerResponse.md docs/UpdateAction.md docs/UpdateDashboardParams.md docs/UpdateEvaluateArtifactParams.md +docs/UpdateInsightDescriptionParams.md docs/UpdateIssueParams.md docs/UpdateProjectMetaRequest.md docs/UpdateSampleCollectionParams.md @@ -560,6 +563,7 @@ model_collection_filter_spec.go model_collection_filter_spec_hidden_values_inner.go model_collection_filter_spec_range.go model_collection_index_status.go +model_collection_population_status.go model_collection_sample_row.go model_collection_sample_row_value.go model_collection_sort_spec.go @@ -934,6 +938,8 @@ model_set_experiment_properties_request.go model_set_setting_value_wrapper.go model_set_team_machine_type_params.go model_set_user_notifications_as_read_200_response.go +model_set_version_update_actions_params.go +model_set_version_update_actions_response.go model_setting_schema.go model_setting_value.go model_settings_and_values_wrapper.go @@ -971,6 +977,7 @@ model_trash_secret_manager_response.go model_update_action.go model_update_dashboard_params.go model_update_evaluate_artifact_params.go +model_update_insight_description_params.go model_update_issue_params.go model_update_project_meta_request.go model_update_sample_collection_params.go @@ -1015,5 +1022,4 @@ model_visualizer_message_params.go model_viz_info_type.go model_viz_type.go response.go -test/api_default_test.go utils.go diff --git a/pkg/tensorleapapi/README.md b/pkg/tensorleapapi/README.md index 69d60427..ce5aa69a 100644 --- a/pkg/tensorleapapi/README.md +++ b/pkg/tensorleapapi/README.md @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 11.0.66 +- API version: 11.0.81 - Package version: 1.0.0 - Generator version: 7.14.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen @@ -227,6 +227,7 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**SetExperimentProperties**](docs/DefaultAPI.md#setexperimentproperties) | **Post** /versions/setExperimentProperties | *DefaultAPI* | [**SetMachineType**](docs/DefaultAPI.md#setmachinetype) | **Post** /teams/setMachineType | *DefaultAPI* | [**SetUserNotificationsAsRead**](docs/DefaultAPI.md#setusernotificationsasread) | **Post** /notifications/setUserNotificationsAsRead | +*DefaultAPI* | [**SetVersionUpdateActions**](docs/DefaultAPI.md#setversionupdateactions) | **Post** /versions/setVersionUpdateActions | *DefaultAPI* | [**StartTrial**](docs/DefaultAPI.md#starttrial) | **Post** /auth/startTrial | *DefaultAPI* | [**StopJob**](docs/DefaultAPI.md#stopjob) | **Post** /jobs/stopJob | *DefaultAPI* | [**TagModel**](docs/DefaultAPI.md#tagmodel) | **Post** /versions/tagModel | @@ -236,6 +237,7 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**UpdateDashboard**](docs/DefaultAPI.md#updatedashboard) | **Post** /dashboards/updateDashboard | *DefaultAPI* | [**UpdateEngineSettings**](docs/DefaultAPI.md#updateenginesettings) | **Post** /settings/updateSetting | *DefaultAPI* | [**UpdateEvaluateArtifact**](docs/DefaultAPI.md#updateevaluateartifact) | **Post** /evaluate/updateEvaluateArtifact | +*DefaultAPI* | [**UpdateInsightDescription**](docs/DefaultAPI.md#updateinsightdescription) | **Post** /insights/updateInsightDescription | *DefaultAPI* | [**UpdateIssue**](docs/DefaultAPI.md#updateissue) | **Post** /issues/updateIssue | *DefaultAPI* | [**UpdateProjectMeta**](docs/DefaultAPI.md#updateprojectmeta) | **Post** /projects/updateProjectMeta | *DefaultAPI* | [**UpdateSampleCollection**](docs/DefaultAPI.md#updatesamplecollection) | **Post** /sample-collection/updateSampleCollection | @@ -303,6 +305,7 @@ Class | Method | HTTP request | Description - [CollectionFilterSpecHiddenValuesInner](docs/CollectionFilterSpecHiddenValuesInner.md) - [CollectionFilterSpecRange](docs/CollectionFilterSpecRange.md) - [CollectionIndexStatus](docs/CollectionIndexStatus.md) + - [CollectionPopulationStatus](docs/CollectionPopulationStatus.md) - [CollectionSampleRow](docs/CollectionSampleRow.md) - [CollectionSampleRowValue](docs/CollectionSampleRowValue.md) - [CollectionSortSpec](docs/CollectionSortSpec.md) @@ -677,6 +680,8 @@ Class | Method | HTTP request | Description - [SetSettingValueWrapper](docs/SetSettingValueWrapper.md) - [SetTeamMachineTypeParams](docs/SetTeamMachineTypeParams.md) - [SetUserNotificationsAsRead200Response](docs/SetUserNotificationsAsRead200Response.md) + - [SetVersionUpdateActionsParams](docs/SetVersionUpdateActionsParams.md) + - [SetVersionUpdateActionsResponse](docs/SetVersionUpdateActionsResponse.md) - [SettingSchema](docs/SettingSchema.md) - [SettingValue](docs/SettingValue.md) - [SettingsAndValuesWrapper](docs/SettingsAndValuesWrapper.md) @@ -714,6 +719,7 @@ Class | Method | HTTP request | Description - [UpdateAction](docs/UpdateAction.md) - [UpdateDashboardParams](docs/UpdateDashboardParams.md) - [UpdateEvaluateArtifactParams](docs/UpdateEvaluateArtifactParams.md) + - [UpdateInsightDescriptionParams](docs/UpdateInsightDescriptionParams.md) - [UpdateIssueParams](docs/UpdateIssueParams.md) - [UpdateProjectMetaRequest](docs/UpdateProjectMetaRequest.md) - [UpdateSampleCollectionParams](docs/UpdateSampleCollectionParams.md) diff --git a/pkg/tensorleapapi/api/openapi.yaml b/pkg/tensorleapapi/api/openapi.yaml index 1deeec73..462bce2f 100644 --- a/pkg/tensorleapapi/api/openapi.yaml +++ b/pkg/tensorleapapi/api/openapi.yaml @@ -4,7 +4,7 @@ info: license: name: SEE LICENSE IN LICENSE.md title: node-server - version: 11.0.66 + version: 11.0.81 servers: - url: /api/v2 paths: @@ -678,6 +678,21 @@ paths: description: No content security: - jwt: [] + /insights/updateInsightDescription: + post: + operationId: UpdateInsightDescription + parameters: [] + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/UpdateInsightDescriptionParams" + required: true + responses: + "204": + description: No content + security: + - jwt: [] /insights/generateInsights: post: operationId: GenerateInsights @@ -2444,6 +2459,25 @@ paths: description: Ok security: - jwt: [] + /versions/setVersionUpdateActions: + post: + operationId: SetVersionUpdateActions + parameters: [] + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/SetVersionUpdateActionsParams" + required: true + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/SetVersionUpdateActionsResponse" + description: Ok + security: + - jwt: [] /versions/getProjectSlimVersions: post: operationId: GetProjectSlimVersions @@ -3600,6 +3634,7 @@ components: additionalProperties: true example: metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than properties: @@ -3609,6 +3644,8 @@ components: $ref: "#/components/schemas/ScatterFilter_value" operator: $ref: "#/components/schemas/OperatorEnum" + rank_by: + type: string required: - metric - operator @@ -3816,9 +3853,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -3909,9 +3948,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -4066,9 +4107,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -4659,9 +4702,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -4752,9 +4797,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -4965,9 +5012,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -5058,9 +5107,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -5169,9 +5220,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -5262,9 +5315,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -5529,9 +5584,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -5622,9 +5679,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -5733,9 +5792,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -5826,9 +5887,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -5965,9 +6028,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6058,9 +6123,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6169,9 +6236,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6262,9 +6331,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6443,9 +6514,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6536,9 +6609,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6647,9 +6722,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6740,9 +6817,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6879,9 +6958,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -6972,9 +7053,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7083,9 +7166,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7176,9 +7261,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7323,9 +7410,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7416,9 +7505,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7527,9 +7618,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7620,9 +7713,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7759,9 +7854,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7852,9 +7949,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -7963,9 +8062,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8056,9 +8157,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8225,9 +8328,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8318,9 +8423,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8429,9 +8536,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8522,9 +8631,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8661,9 +8772,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8754,9 +8867,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8865,9 +8980,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -8958,9 +9075,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -9136,9 +9255,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -9229,9 +9350,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -9340,9 +9463,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -9433,9 +9558,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -9572,9 +9699,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -9665,9 +9794,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -9776,9 +9907,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -9869,9 +10002,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -10045,9 +10180,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -10138,9 +10275,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -10249,9 +10388,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -10342,9 +10483,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -10481,9 +10624,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -10574,9 +10719,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -10685,9 +10832,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -10778,9 +10927,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11006,9 +11157,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11099,9 +11252,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11210,9 +11365,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11303,9 +11460,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11425,9 +11584,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11518,9 +11679,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11684,9 +11847,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11777,9 +11942,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11888,9 +12055,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -11981,9 +12150,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -12103,9 +12274,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -12196,9 +12369,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -12319,9 +12494,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -12412,9 +12589,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -12523,9 +12702,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -12616,9 +12797,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -13189,6 +13372,7 @@ components: enum: - update_metadata - update_metric + - update_metric_direction - update_visualization - update_insights type: string @@ -13575,6 +13759,9 @@ components: - SLIM_JOB_CPU_LIMIT - SLIM_JOB_REQUIRED_MEMORY - SLIM_JOB_LIMIT_MEMORY + - PRIORITIZE_AUTO_SETTINGS_REDIS + - REDIS_MEMORY_REQUEST + - REDIS_MEMORY_LIMIT - PIP_INDEX_URL - PIP_EXTRA_INDEX_URL - WARMUP_TIMEOUT_MINUTES @@ -14186,9 +14373,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -14279,9 +14468,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -14390,9 +14581,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -14483,9 +14676,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -14729,9 +14924,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -14822,9 +15019,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -14933,9 +15132,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15026,9 +15227,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15224,9 +15427,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15317,9 +15522,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15428,9 +15635,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15521,9 +15730,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15683,9 +15894,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15776,9 +15989,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15887,9 +16102,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -15980,9 +16197,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16095,9 +16314,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16188,9 +16409,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16299,9 +16522,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16392,9 +16617,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16505,9 +16732,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16598,9 +16827,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16709,9 +16940,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16802,9 +17035,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -16944,9 +17179,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17037,9 +17274,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17148,9 +17387,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17241,9 +17482,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17356,9 +17599,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17449,9 +17694,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17560,9 +17807,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17653,9 +17902,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17843,9 +18094,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -17936,9 +18189,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18047,9 +18302,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18140,9 +18397,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18306,9 +18565,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18399,9 +18660,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18510,9 +18773,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18603,9 +18868,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18718,9 +18985,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18811,9 +19080,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -18922,9 +19193,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19015,9 +19288,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19205,9 +19480,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19298,9 +19575,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19409,9 +19688,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19502,9 +19783,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19623,9 +19906,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19716,9 +20001,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19827,9 +20114,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -19920,9 +20209,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20035,9 +20326,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20128,9 +20421,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20239,9 +20534,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20332,9 +20629,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20522,9 +20821,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20615,9 +20916,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20726,9 +21029,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20819,9 +21124,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -20972,9 +21279,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -21065,9 +21374,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -21176,9 +21487,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -21269,9 +21582,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -21492,9 +21807,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -21585,9 +21902,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -21696,9 +22015,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -21789,9 +22110,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -22046,9 +22369,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -22139,9 +22464,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -22250,9 +22577,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -22343,9 +22672,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -22546,9 +22877,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -22639,9 +22972,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -22750,9 +23085,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -22843,9 +23180,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -23262,6 +23601,7 @@ components: inferenceArtifactId: inferenceArtifactId createdAt: 2000-01-23T04:56:07.000+00:00 index: 0.8008281904610115 + description: description insightType: severity: 4.145608029883936 automatic_tests: @@ -23341,9 +23681,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -23366,6 +23708,8 @@ components: type: number status: $ref: "#/components/schemas/InsightStatus" + description: + type: string createdAt: format: date-time type: string @@ -23387,6 +23731,7 @@ components: - inferenceArtifactId: inferenceArtifactId createdAt: 2000-01-23T04:56:07.000+00:00 index: 0.8008281904610115 + description: description insightType: severity: 4.145608029883936 automatic_tests: @@ -23466,9 +23811,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -23482,6 +23829,7 @@ components: - inferenceArtifactId: inferenceArtifactId createdAt: 2000-01-23T04:56:07.000+00:00 index: 0.8008281904610115 + description: description insightType: severity: 4.145608029883936 automatic_tests: @@ -23561,9 +23909,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -23613,6 +23963,23 @@ components: - projectId - status type: object + UpdateInsightDescriptionParams: + additionalProperties: true + example: + description: description + insightId: insightId + projectId: projectId + properties: + insightId: + type: string + projectId: + type: string + description: + type: string + required: + - insightId + - projectId + type: object GenerateInsightsParams: additionalProperties: true example: @@ -23703,9 +24070,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -23796,9 +24165,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -23907,9 +24278,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -24000,9 +24373,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -25385,9 +25760,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -25478,9 +25855,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -25589,9 +25968,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -25682,9 +26063,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -25848,9 +26231,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -25941,9 +26326,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -26052,9 +26439,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -26145,9 +26534,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -26311,9 +26702,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -26404,9 +26797,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -26515,9 +26910,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -26608,9 +27005,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -26809,9 +27208,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -26902,9 +27303,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27013,9 +27416,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27106,9 +27511,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27273,9 +27680,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27366,9 +27775,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27477,9 +27888,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27570,9 +27983,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27726,9 +28141,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27819,9 +28236,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -27930,9 +28349,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28023,9 +28444,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28202,9 +28625,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28295,9 +28720,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28406,9 +28833,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28499,9 +28928,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28640,9 +29071,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28733,9 +29166,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28844,9 +29279,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -28937,9 +29374,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -29158,9 +29597,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -29251,9 +29692,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -29362,9 +29805,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -29455,9 +29900,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -30184,18 +30631,41 @@ components: required: - projectId type: object + CollectionPopulationStatus: + description: |- + Status of the async samples-blob population for a collection (distinct + from CollectionIndexStatus, which tracks the downstream ES reindex). + enum: + - processing + - ready + - failed + type: string SampleCollection: example: samplesBlobName: samplesBlobName createdAt: 2000-01-23T04:56:07.000+00:00 createdBy: createdBy - samplesCount: 0.8008281904610115 + samplesCount: 6.027456183070403 teamId: teamId + populationError: populationError name: name description: description + processedSamplesCount: 0.8008281904610115 + populationStatus: processing projectId: projectId cid: cid properties: + populationError: + description: Error message when populationStatus === 'failed'. + type: string + processedSamplesCount: + description: |- + Live count of samples resolved so far while 'processing' — drives the + "Creating… N samples so far" / "Adding…" progress text. + format: double + type: number + populationStatus: + $ref: "#/components/schemas/CollectionPopulationStatus" samplesCount: format: double type: number @@ -30220,6 +30690,7 @@ components: - cid - createdAt - name + - populationStatus - projectId - teamId type: object @@ -30229,19 +30700,25 @@ components: - samplesBlobName: samplesBlobName createdAt: 2000-01-23T04:56:07.000+00:00 createdBy: createdBy - samplesCount: 0.8008281904610115 + samplesCount: 6.027456183070403 teamId: teamId + populationError: populationError name: name description: description + processedSamplesCount: 0.8008281904610115 + populationStatus: processing projectId: projectId cid: cid - samplesBlobName: samplesBlobName createdAt: 2000-01-23T04:56:07.000+00:00 createdBy: createdBy - samplesCount: 0.8008281904610115 + samplesCount: 6.027456183070403 teamId: teamId + populationError: populationError name: name description: description + processedSamplesCount: 0.8008281904610115 + populationStatus: processing projectId: projectId cid: cid properties: @@ -30263,30 +30740,88 @@ components: type: object AddSampleCollectionResponse: example: + populationStatus: processing cid: cid properties: + populationStatus: + $ref: "#/components/schemas/CollectionPopulationStatus" cid: type: string required: - cid + - populationStatus + type: object + CollectionFilterSpec: + example: + field: field + range: + min: 6.027456183070403 + max: 0.8008281904610115 + hiddenValues: + - CollectionFilterSpec_hiddenValues_inner + - CollectionFilterSpec_hiddenValues_inner + properties: + range: + $ref: "#/components/schemas/CollectionFilterSpec_range" + hiddenValues: + items: + $ref: "#/components/schemas/CollectionFilterSpec_hiddenValues_inner" + type: array + field: + type: string + required: + - field type: object AddSampleCollectionParams: example: + excluded: + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + versionId: versionId name: name description: description - projectId: projectId - samples: + filters: + - field: field + range: + min: 6.027456183070403 + max: 0.8008281904610115 + hiddenValues: + - CollectionFilterSpec_hiddenValues_inner + - CollectionFilterSpec_hiddenValues_inner + - field: field + range: + min: 6.027456183070403 + max: 0.8008281904610115 + hiddenValues: + - CollectionFilterSpec_hiddenValues_inner + - CollectionFilterSpec_hiddenValues_inner + included: - index: 0.8008281904610115 state: training hashed_index: hashed_index - index: 0.8008281904610115 state: training hashed_index: hashed_index + projectId: projectId properties: - samples: + included: items: $ref: "#/components/schemas/SampleIdentity" type: array + excluded: + items: + $ref: "#/components/schemas/SampleIdentity" + type: array + filters: + items: + $ref: "#/components/schemas/CollectionFilterSpec" + type: array + versionId: + type: string projectId: type: string description: @@ -30328,22 +30863,55 @@ components: type: object UpdateSampleCollectionParams: example: + excluded: + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index sampleCollectionId: sampleCollectionId + versionId: versionId name: name description: description - projectId: projectId - samples: + filters: + - field: field + range: + min: 6.027456183070403 + max: 0.8008281904610115 + hiddenValues: + - CollectionFilterSpec_hiddenValues_inner + - CollectionFilterSpec_hiddenValues_inner + - field: field + range: + min: 6.027456183070403 + max: 0.8008281904610115 + hiddenValues: + - CollectionFilterSpec_hiddenValues_inner + - CollectionFilterSpec_hiddenValues_inner + included: - index: 0.8008281904610115 state: training hashed_index: hashed_index - index: 0.8008281904610115 state: training hashed_index: hashed_index + projectId: projectId properties: - samples: + included: items: $ref: "#/components/schemas/SampleIdentity" type: array + excluded: + items: + $ref: "#/components/schemas/SampleIdentity" + type: array + filters: + items: + $ref: "#/components/schemas/CollectionFilterSpec" + type: array + versionId: + type: string description: type: string name: @@ -30366,27 +30934,6 @@ components: required: - numOfRemoved type: object - CollectionFilterSpec: - example: - field: field - range: - min: 6.027456183070403 - max: 0.8008281904610115 - hiddenValues: - - CollectionFilterSpec_hiddenValues_inner - - CollectionFilterSpec_hiddenValues_inner - properties: - range: - $ref: "#/components/schemas/CollectionFilterSpec_range" - hiddenValues: - items: - $ref: "#/components/schemas/CollectionFilterSpec_hiddenValues_inner" - type: array - field: - type: string - required: - - field - type: object RemoveSamplesFromCollectionParams: example: excluded: @@ -30645,9 +31192,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -30738,9 +31287,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -30849,9 +31400,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -30942,9 +31495,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -31766,9 +32321,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -31859,9 +32416,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -31970,9 +32529,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32063,9 +32624,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32090,6 +32653,7 @@ components: - null gt: 5.637376656633329 operator: between + description: description projectId: projectId properties: projectId: @@ -32102,6 +32666,8 @@ components: items: $ref: "#/components/schemas/ESFilter" type: array + description: + type: string required: - name - projectId @@ -32201,9 +32767,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32294,9 +32862,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32405,9 +32975,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32498,9 +33070,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32525,6 +33099,7 @@ components: - null gt: 5.637376656633329 operator: between + description: description projectId: projectId cid: cid properties: @@ -32540,6 +33115,8 @@ components: items: $ref: "#/components/schemas/ESFilter" type: array + description: + type: string required: - cid - projectId @@ -32641,9 +33218,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32734,9 +33313,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32845,9 +33426,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32938,9 +33521,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -32965,6 +33550,7 @@ components: - null gt: 5.637376656633329 operator: between + description: description projectId: projectId cid: cid updatedAt: 2000-01-23T04:56:07.000+00:00 @@ -32991,6 +33577,8 @@ components: items: $ref: "#/components/schemas/ESFilter" type: array + description: + type: string required: - cid - createdAt @@ -33190,6 +33778,7 @@ components: - EVALUATION_MAIN - EVALUATION_WORKERS - POP_EXPLORATION + - REDIS - GENERAL nullable: false type: string @@ -34611,6 +35200,38 @@ components: - projectId - versionId type: object + SetVersionUpdateActionsResponse: + additionalProperties: true + example: + versionId: versionId + properties: + versionId: + type: string + required: + - versionId + type: object + SetVersionUpdateActionsParams: + additionalProperties: true + example: + updateActions: + - update_metadata + - update_metadata + versionId: versionId + projectId: projectId + properties: + versionId: + type: string + projectId: + type: string + updateActions: + items: + $ref: "#/components/schemas/UpdateAction" + type: array + required: + - projectId + - updateActions + - versionId + type: object Record_string.any_: description: Construct a type with a set of properties K of type T properties: {} @@ -39240,14 +39861,22 @@ components: additionalProperties: true example: versionId: versionId + sampleIds: + - sampleIds + - sampleIds projectId: projectId properties: versionId: type: string projectId: type: string + sampleIds: + items: + type: string + type: array required: - projectId + - sampleIds - versionId type: object GetSampleVisualizationsPathsResponse: @@ -39585,9 +40214,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -39678,9 +40309,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -39789,9 +40422,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -39882,9 +40517,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -40005,9 +40642,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -40098,9 +40737,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -40292,9 +40933,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -40385,9 +41028,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -40496,9 +41141,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -40589,9 +41236,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -40832,9 +41481,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -40948,9 +41599,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -41041,9 +41694,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -41152,9 +41807,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: @@ -41245,9 +41902,11 @@ components: parent_id: parent_id display_filters: - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than - metric: metric + rank_by: rank_by value: ScatterFilter_value operator: smaller_than aggressor_fixing: diff --git a/pkg/tensorleapapi/api_default.go b/pkg/tensorleapapi/api_default.go index 2ac5fb50..3daba933 100644 --- a/pkg/tensorleapapi/api_default.go +++ b/pkg/tensorleapapi/api_default.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15629,6 +15629,115 @@ func (a *DefaultAPIService) SetUserNotificationsAsReadExecute(r ApiSetUserNotifi return localVarReturnValue, localVarHTTPResponse, nil } +type ApiSetVersionUpdateActionsRequest struct { + ctx context.Context + ApiService *DefaultAPIService + setVersionUpdateActionsParams *SetVersionUpdateActionsParams +} + +func (r ApiSetVersionUpdateActionsRequest) SetVersionUpdateActionsParams(setVersionUpdateActionsParams SetVersionUpdateActionsParams) ApiSetVersionUpdateActionsRequest { + r.setVersionUpdateActionsParams = &setVersionUpdateActionsParams + return r +} + +func (r ApiSetVersionUpdateActionsRequest) Execute() (*SetVersionUpdateActionsResponse, *http.Response, error) { + return r.ApiService.SetVersionUpdateActionsExecute(r) +} + +/* +SetVersionUpdateActions Method for SetVersionUpdateActions + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return ApiSetVersionUpdateActionsRequest +*/ +func (a *DefaultAPIService) SetVersionUpdateActions(ctx context.Context) ApiSetVersionUpdateActionsRequest { + return ApiSetVersionUpdateActionsRequest{ + ApiService: a, + ctx: ctx, + } +} + +// Execute executes the request +// +// @return SetVersionUpdateActionsResponse +func (a *DefaultAPIService) SetVersionUpdateActionsExecute(r ApiSetVersionUpdateActionsRequest) (*SetVersionUpdateActionsResponse, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPost + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *SetVersionUpdateActionsResponse + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.SetVersionUpdateActions") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/versions/setVersionUpdateActions" + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + if r.setVersionUpdateActionsParams == nil { + return localVarReturnValue, nil, reportError("setVersionUpdateActionsParams is required and must be specified") + } + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + // body params + localVarPostBody = r.setVersionUpdateActionsParams + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + type ApiStartTrialRequest struct { ctx context.Context ApiService *DefaultAPIService @@ -16574,6 +16683,103 @@ func (a *DefaultAPIService) UpdateEvaluateArtifactExecute(r ApiUpdateEvaluateArt return localVarReturnValue, localVarHTTPResponse, nil } +type ApiUpdateInsightDescriptionRequest struct { + ctx context.Context + ApiService *DefaultAPIService + updateInsightDescriptionParams *UpdateInsightDescriptionParams +} + +func (r ApiUpdateInsightDescriptionRequest) UpdateInsightDescriptionParams(updateInsightDescriptionParams UpdateInsightDescriptionParams) ApiUpdateInsightDescriptionRequest { + r.updateInsightDescriptionParams = &updateInsightDescriptionParams + return r +} + +func (r ApiUpdateInsightDescriptionRequest) Execute() (*http.Response, error) { + return r.ApiService.UpdateInsightDescriptionExecute(r) +} + +/* +UpdateInsightDescription Method for UpdateInsightDescription + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return ApiUpdateInsightDescriptionRequest +*/ +func (a *DefaultAPIService) UpdateInsightDescription(ctx context.Context) ApiUpdateInsightDescriptionRequest { + return ApiUpdateInsightDescriptionRequest{ + ApiService: a, + ctx: ctx, + } +} + +// Execute executes the request +func (a *DefaultAPIService) UpdateInsightDescriptionExecute(r ApiUpdateInsightDescriptionRequest) (*http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPost + localVarPostBody interface{} + formFiles []formFile + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.UpdateInsightDescription") + if err != nil { + return nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/insights/updateInsightDescription" + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + if r.updateInsightDescriptionParams == nil { + return nil, reportError("updateInsightDescriptionParams is required and must be specified") + } + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + // body params + localVarPostBody = r.updateInsightDescriptionParams + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarHTTPResponse, err + } + + localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + return localVarHTTPResponse, newErr + } + + return localVarHTTPResponse, nil +} + type ApiUpdateIssueRequest struct { ctx context.Context ApiService *DefaultAPIService diff --git a/pkg/tensorleapapi/client.go b/pkg/tensorleapapi/client.go index ceb8b360..d97054c3 100644 --- a/pkg/tensorleapapi/client.go +++ b/pkg/tensorleapapi/client.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -40,7 +40,7 @@ var ( queryDescape = strings.NewReplacer("%5B", "[", "%5D", "]") ) -// APIClient manages communication with the node-server API v11.0.66 +// APIClient manages communication with the node-server API v11.0.81 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/pkg/tensorleapapi/configuration.go b/pkg/tensorleapapi/configuration.go index 87bcdc60..60243deb 100644 --- a/pkg/tensorleapapi/configuration.go +++ b/pkg/tensorleapapi/configuration.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/docs/AddSampleCollectionParams.md b/pkg/tensorleapapi/docs/AddSampleCollectionParams.md index 1ebb3684..d615926d 100644 --- a/pkg/tensorleapapi/docs/AddSampleCollectionParams.md +++ b/pkg/tensorleapapi/docs/AddSampleCollectionParams.md @@ -4,7 +4,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**Samples** | Pointer to [**[]SampleIdentity**](SampleIdentity.md) | | [optional] +**Included** | Pointer to [**[]SampleIdentity**](SampleIdentity.md) | | [optional] +**Excluded** | Pointer to [**[]SampleIdentity**](SampleIdentity.md) | | [optional] +**Filters** | Pointer to [**[]CollectionFilterSpec**](CollectionFilterSpec.md) | | [optional] +**VersionId** | Pointer to **string** | | [optional] **ProjectId** | **string** | | **Description** | Pointer to **string** | | [optional] **Name** | **string** | | @@ -28,30 +31,105 @@ NewAddSampleCollectionParamsWithDefaults instantiates a new AddSampleCollectionP This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSamples +### GetIncluded -`func (o *AddSampleCollectionParams) GetSamples() []SampleIdentity` +`func (o *AddSampleCollectionParams) GetIncluded() []SampleIdentity` -GetSamples returns the Samples field if non-nil, zero value otherwise. +GetIncluded returns the Included field if non-nil, zero value otherwise. -### GetSamplesOk +### GetIncludedOk -`func (o *AddSampleCollectionParams) GetSamplesOk() (*[]SampleIdentity, bool)` +`func (o *AddSampleCollectionParams) GetIncludedOk() (*[]SampleIdentity, bool)` -GetSamplesOk returns a tuple with the Samples field if it's non-nil, zero value otherwise +GetIncludedOk returns a tuple with the Included field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSamples +### SetIncluded -`func (o *AddSampleCollectionParams) SetSamples(v []SampleIdentity)` +`func (o *AddSampleCollectionParams) SetIncluded(v []SampleIdentity)` -SetSamples sets Samples field to given value. +SetIncluded sets Included field to given value. -### HasSamples +### HasIncluded -`func (o *AddSampleCollectionParams) HasSamples() bool` +`func (o *AddSampleCollectionParams) HasIncluded() bool` -HasSamples returns a boolean if a field has been set. +HasIncluded returns a boolean if a field has been set. + +### GetExcluded + +`func (o *AddSampleCollectionParams) GetExcluded() []SampleIdentity` + +GetExcluded returns the Excluded field if non-nil, zero value otherwise. + +### GetExcludedOk + +`func (o *AddSampleCollectionParams) GetExcludedOk() (*[]SampleIdentity, bool)` + +GetExcludedOk returns a tuple with the Excluded field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetExcluded + +`func (o *AddSampleCollectionParams) SetExcluded(v []SampleIdentity)` + +SetExcluded sets Excluded field to given value. + +### HasExcluded + +`func (o *AddSampleCollectionParams) HasExcluded() bool` + +HasExcluded returns a boolean if a field has been set. + +### GetFilters + +`func (o *AddSampleCollectionParams) GetFilters() []CollectionFilterSpec` + +GetFilters returns the Filters field if non-nil, zero value otherwise. + +### GetFiltersOk + +`func (o *AddSampleCollectionParams) GetFiltersOk() (*[]CollectionFilterSpec, bool)` + +GetFiltersOk returns a tuple with the Filters field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetFilters + +`func (o *AddSampleCollectionParams) SetFilters(v []CollectionFilterSpec)` + +SetFilters sets Filters field to given value. + +### HasFilters + +`func (o *AddSampleCollectionParams) HasFilters() bool` + +HasFilters returns a boolean if a field has been set. + +### GetVersionId + +`func (o *AddSampleCollectionParams) GetVersionId() string` + +GetVersionId returns the VersionId field if non-nil, zero value otherwise. + +### GetVersionIdOk + +`func (o *AddSampleCollectionParams) GetVersionIdOk() (*string, bool)` + +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVersionId + +`func (o *AddSampleCollectionParams) SetVersionId(v string)` + +SetVersionId sets VersionId field to given value. + +### HasVersionId + +`func (o *AddSampleCollectionParams) HasVersionId() bool` + +HasVersionId returns a boolean if a field has been set. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/AddSampleCollectionResponse.md b/pkg/tensorleapapi/docs/AddSampleCollectionResponse.md index 92b568fc..40b1db33 100644 --- a/pkg/tensorleapapi/docs/AddSampleCollectionResponse.md +++ b/pkg/tensorleapapi/docs/AddSampleCollectionResponse.md @@ -4,13 +4,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**PopulationStatus** | [**CollectionPopulationStatus**](CollectionPopulationStatus.md) | | **Cid** | **string** | | ## Methods ### NewAddSampleCollectionResponse -`func NewAddSampleCollectionResponse(cid string, ) *AddSampleCollectionResponse` +`func NewAddSampleCollectionResponse(populationStatus CollectionPopulationStatus, cid string, ) *AddSampleCollectionResponse` NewAddSampleCollectionResponse instantiates a new AddSampleCollectionResponse object This constructor will assign default values to properties that have it defined, @@ -25,6 +26,26 @@ NewAddSampleCollectionResponseWithDefaults instantiates a new AddSampleCollectio This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set +### GetPopulationStatus + +`func (o *AddSampleCollectionResponse) GetPopulationStatus() CollectionPopulationStatus` + +GetPopulationStatus returns the PopulationStatus field if non-nil, zero value otherwise. + +### GetPopulationStatusOk + +`func (o *AddSampleCollectionResponse) GetPopulationStatusOk() (*CollectionPopulationStatus, bool)` + +GetPopulationStatusOk returns a tuple with the PopulationStatus field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetPopulationStatus + +`func (o *AddSampleCollectionResponse) SetPopulationStatus(v CollectionPopulationStatus)` + +SetPopulationStatus sets PopulationStatus field to given value. + + ### GetCid `func (o *AddSampleCollectionResponse) GetCid() string` diff --git a/pkg/tensorleapapi/docs/CollectionPopulationStatus.md b/pkg/tensorleapapi/docs/CollectionPopulationStatus.md new file mode 100644 index 00000000..5ad97e8b --- /dev/null +++ b/pkg/tensorleapapi/docs/CollectionPopulationStatus.md @@ -0,0 +1,15 @@ +# CollectionPopulationStatus + +## Enum + + +* `PROCESSING` (value: `"processing"`) + +* `READY` (value: `"ready"`) + +* `FAILED` (value: `"failed"`) + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/CreateSessionTestRequest.md b/pkg/tensorleapapi/docs/CreateSessionTestRequest.md index b8039d51..144a0619 100644 --- a/pkg/tensorleapapi/docs/CreateSessionTestRequest.md +++ b/pkg/tensorleapapi/docs/CreateSessionTestRequest.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **Name** | **string** | | **TestFilter** | [**ClientFilterParams**](ClientFilterParams.md) | | **DatasetFilter** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**Description** | Pointer to **string** | | [optional] ## Methods @@ -113,6 +114,31 @@ SetDatasetFilter sets DatasetFilter field to given value. HasDatasetFilter returns a boolean if a field has been set. +### GetDescription + +`func (o *CreateSessionTestRequest) GetDescription() string` + +GetDescription returns the Description field if non-nil, zero value otherwise. + +### GetDescriptionOk + +`func (o *CreateSessionTestRequest) GetDescriptionOk() (*string, bool)` + +GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDescription + +`func (o *CreateSessionTestRequest) SetDescription(v string)` + +SetDescription sets Description field to given value. + +### HasDescription + +`func (o *CreateSessionTestRequest) HasDescription() bool` + +HasDescription returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/DefaultApi.md b/pkg/tensorleapapi/docs/DefaultApi.md index 63f18329..aab38db2 100644 --- a/pkg/tensorleapapi/docs/DefaultApi.md +++ b/pkg/tensorleapapi/docs/DefaultApi.md @@ -153,6 +153,7 @@ Method | HTTP request | Description [**SetExperimentProperties**](DefaultAPI.md#SetExperimentProperties) | **Post** /versions/setExperimentProperties | [**SetMachineType**](DefaultAPI.md#SetMachineType) | **Post** /teams/setMachineType | [**SetUserNotificationsAsRead**](DefaultAPI.md#SetUserNotificationsAsRead) | **Post** /notifications/setUserNotificationsAsRead | +[**SetVersionUpdateActions**](DefaultAPI.md#SetVersionUpdateActions) | **Post** /versions/setVersionUpdateActions | [**StartTrial**](DefaultAPI.md#StartTrial) | **Post** /auth/startTrial | [**StopJob**](DefaultAPI.md#StopJob) | **Post** /jobs/stopJob | [**TagModel**](DefaultAPI.md#TagModel) | **Post** /versions/tagModel | @@ -162,6 +163,7 @@ Method | HTTP request | Description [**UpdateDashboard**](DefaultAPI.md#UpdateDashboard) | **Post** /dashboards/updateDashboard | [**UpdateEngineSettings**](DefaultAPI.md#UpdateEngineSettings) | **Post** /settings/updateSetting | [**UpdateEvaluateArtifact**](DefaultAPI.md#UpdateEvaluateArtifact) | **Post** /evaluate/updateEvaluateArtifact | +[**UpdateInsightDescription**](DefaultAPI.md#UpdateInsightDescription) | **Post** /insights/updateInsightDescription | [**UpdateIssue**](DefaultAPI.md#UpdateIssue) | **Post** /issues/updateIssue | [**UpdateProjectMeta**](DefaultAPI.md#UpdateProjectMeta) | **Post** /projects/updateProjectMeta | [**UpdateSampleCollection**](DefaultAPI.md#UpdateSampleCollection) | **Post** /sample-collection/updateSampleCollection | @@ -5925,7 +5927,7 @@ import ( ) func main() { - getScatterSampleVisualizationsParams := *openapiclient.NewGetScatterSampleVisualizationsParams("VersionId_example", "ProjectId_example") // GetScatterSampleVisualizationsParams | + getScatterSampleVisualizationsParams := *openapiclient.NewGetScatterSampleVisualizationsParams("VersionId_example", "ProjectId_example", []string{"SampleIds_example"}) // GetScatterSampleVisualizationsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -9549,6 +9551,70 @@ Other parameters are passed through a pointer to a apiSetUserNotificationsAsRead [[Back to README]](../README.md) +## SetVersionUpdateActions + +> SetVersionUpdateActionsResponse SetVersionUpdateActions(ctx).SetVersionUpdateActionsParams(setVersionUpdateActionsParams).Execute() + + + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" +) + +func main() { + setVersionUpdateActionsParams := *openapiclient.NewSetVersionUpdateActionsParams("VersionId_example", "ProjectId_example", []openapiclient.UpdateAction{openapiclient.UpdateAction("update_metadata")}) // SetVersionUpdateActionsParams | + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + resp, r, err := apiClient.DefaultAPI.SetVersionUpdateActions(context.Background()).SetVersionUpdateActionsParams(setVersionUpdateActionsParams).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.SetVersionUpdateActions``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `SetVersionUpdateActions`: SetVersionUpdateActionsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.SetVersionUpdateActions`: %v\n", resp) +} +``` + +### Path Parameters + + + +### Other Parameters + +Other parameters are passed through a pointer to a apiSetVersionUpdateActionsRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **setVersionUpdateActionsParams** | [**SetVersionUpdateActionsParams**](SetVersionUpdateActionsParams.md) | | + +### Return type + +[**SetVersionUpdateActionsResponse**](SetVersionUpdateActionsResponse.md) + +### Authorization + +[jwt](../README.md#jwt) + +### HTTP request headers + +- **Content-Type**: application/json +- **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + + ## StartTrial > UserData StartTrial(ctx).StartTrialParams(startTrialParams).Execute() @@ -10119,6 +10185,68 @@ Name | Type | Description | Notes [[Back to README]](../README.md) +## UpdateInsightDescription + +> UpdateInsightDescription(ctx).UpdateInsightDescriptionParams(updateInsightDescriptionParams).Execute() + + + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" +) + +func main() { + updateInsightDescriptionParams := *openapiclient.NewUpdateInsightDescriptionParams("InsightId_example", "ProjectId_example") // UpdateInsightDescriptionParams | + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + r, err := apiClient.DefaultAPI.UpdateInsightDescription(context.Background()).UpdateInsightDescriptionParams(updateInsightDescriptionParams).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.UpdateInsightDescription``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } +} +``` + +### Path Parameters + + + +### Other Parameters + +Other parameters are passed through a pointer to a apiUpdateInsightDescriptionRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **updateInsightDescriptionParams** | [**UpdateInsightDescriptionParams**](UpdateInsightDescriptionParams.md) | | + +### Return type + + (empty response body) + +### Authorization + +[jwt](../README.md#jwt) + +### HTTP request headers + +- **Content-Type**: application/json +- **Accept**: Not defined + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + + ## UpdateIssue > Issue UpdateIssue(ctx).UpdateIssueParams(updateIssueParams).Execute() diff --git a/pkg/tensorleapapi/docs/EngineSettingKey.md b/pkg/tensorleapapi/docs/EngineSettingKey.md index f4eb12a2..4e0194aa 100644 --- a/pkg/tensorleapapi/docs/EngineSettingKey.md +++ b/pkg/tensorleapapi/docs/EngineSettingKey.md @@ -43,6 +43,12 @@ * `SLIM_JOB_LIMIT_MEMORY` (value: `"SLIM_JOB_LIMIT_MEMORY"`) +* `PRIORITIZE_AUTO_SETTINGS_REDIS` (value: `"PRIORITIZE_AUTO_SETTINGS_REDIS"`) + +* `REDIS_MEMORY_REQUEST` (value: `"REDIS_MEMORY_REQUEST"`) + +* `REDIS_MEMORY_LIMIT` (value: `"REDIS_MEMORY_LIMIT"`) + * `PIP_INDEX_URL` (value: `"PIP_INDEX_URL"`) * `PIP_EXTRA_INDEX_URL` (value: `"PIP_EXTRA_INDEX_URL"`) diff --git a/pkg/tensorleapapi/docs/GetScatterSampleVisualizationsParams.md b/pkg/tensorleapapi/docs/GetScatterSampleVisualizationsParams.md index b811a13d..dcb9e715 100644 --- a/pkg/tensorleapapi/docs/GetScatterSampleVisualizationsParams.md +++ b/pkg/tensorleapapi/docs/GetScatterSampleVisualizationsParams.md @@ -6,12 +6,13 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **VersionId** | **string** | | **ProjectId** | **string** | | +**SampleIds** | **[]string** | | ## Methods ### NewGetScatterSampleVisualizationsParams -`func NewGetScatterSampleVisualizationsParams(versionId string, projectId string, ) *GetScatterSampleVisualizationsParams` +`func NewGetScatterSampleVisualizationsParams(versionId string, projectId string, sampleIds []string, ) *GetScatterSampleVisualizationsParams` NewGetScatterSampleVisualizationsParams instantiates a new GetScatterSampleVisualizationsParams object This constructor will assign default values to properties that have it defined, @@ -66,6 +67,26 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. +### GetSampleIds + +`func (o *GetScatterSampleVisualizationsParams) GetSampleIds() []string` + +GetSampleIds returns the SampleIds field if non-nil, zero value otherwise. + +### GetSampleIdsOk + +`func (o *GetScatterSampleVisualizationsParams) GetSampleIdsOk() (*[]string, bool)` + +GetSampleIdsOk returns a tuple with the SampleIds field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSampleIds + +`func (o *GetScatterSampleVisualizationsParams) SetSampleIds(v []string)` + +SetSampleIds sets SampleIds field to given value. + + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/Insight.md b/pkg/tensorleapapi/docs/Insight.md index ede6226b..103d056c 100644 --- a/pkg/tensorleapapi/docs/Insight.md +++ b/pkg/tensorleapapi/docs/Insight.md @@ -9,6 +9,7 @@ Name | Type | Description | Notes **InsightType** | [**InsightType**](InsightType.md) | | **Index** | **float64** | | **Status** | [**InsightStatus**](InsightStatus.md) | | +**Description** | Pointer to **string** | | [optional] **CreatedAt** | **time.Time** | | **UpdatedAt** | **time.Time** | | @@ -136,6 +137,31 @@ and a boolean to check if the value has been set. SetStatus sets Status field to given value. +### GetDescription + +`func (o *Insight) GetDescription() string` + +GetDescription returns the Description field if non-nil, zero value otherwise. + +### GetDescriptionOk + +`func (o *Insight) GetDescriptionOk() (*string, bool)` + +GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDescription + +`func (o *Insight) SetDescription(v string)` + +SetDescription sets Description field to given value. + +### HasDescription + +`func (o *Insight) HasDescription() bool` + +HasDescription returns a boolean if a field has been set. + ### GetCreatedAt `func (o *Insight) GetCreatedAt() time.Time` diff --git a/pkg/tensorleapapi/docs/SampleCollection.md b/pkg/tensorleapapi/docs/SampleCollection.md index 25da511d..8a7bb462 100644 --- a/pkg/tensorleapapi/docs/SampleCollection.md +++ b/pkg/tensorleapapi/docs/SampleCollection.md @@ -4,6 +4,9 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**PopulationError** | Pointer to **string** | Error message when populationStatus === 'failed'. | [optional] +**ProcessedSamplesCount** | Pointer to **float64** | Live count of samples resolved so far while 'processing' — drives the \"Creating… N samples so far\" / \"Adding…\" progress text. | [optional] +**PopulationStatus** | [**CollectionPopulationStatus**](CollectionPopulationStatus.md) | | **SamplesCount** | Pointer to **float64** | | [optional] **SamplesBlobName** | Pointer to **string** | | [optional] **CreatedBy** | Pointer to **string** | | [optional] @@ -18,7 +21,7 @@ Name | Type | Description | Notes ### NewSampleCollection -`func NewSampleCollection(createdAt time.Time, name string, cid string, projectId string, teamId string, ) *SampleCollection` +`func NewSampleCollection(populationStatus CollectionPopulationStatus, createdAt time.Time, name string, cid string, projectId string, teamId string, ) *SampleCollection` NewSampleCollection instantiates a new SampleCollection object This constructor will assign default values to properties that have it defined, @@ -33,6 +36,76 @@ NewSampleCollectionWithDefaults instantiates a new SampleCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set +### GetPopulationError + +`func (o *SampleCollection) GetPopulationError() string` + +GetPopulationError returns the PopulationError field if non-nil, zero value otherwise. + +### GetPopulationErrorOk + +`func (o *SampleCollection) GetPopulationErrorOk() (*string, bool)` + +GetPopulationErrorOk returns a tuple with the PopulationError field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetPopulationError + +`func (o *SampleCollection) SetPopulationError(v string)` + +SetPopulationError sets PopulationError field to given value. + +### HasPopulationError + +`func (o *SampleCollection) HasPopulationError() bool` + +HasPopulationError returns a boolean if a field has been set. + +### GetProcessedSamplesCount + +`func (o *SampleCollection) GetProcessedSamplesCount() float64` + +GetProcessedSamplesCount returns the ProcessedSamplesCount field if non-nil, zero value otherwise. + +### GetProcessedSamplesCountOk + +`func (o *SampleCollection) GetProcessedSamplesCountOk() (*float64, bool)` + +GetProcessedSamplesCountOk returns a tuple with the ProcessedSamplesCount field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProcessedSamplesCount + +`func (o *SampleCollection) SetProcessedSamplesCount(v float64)` + +SetProcessedSamplesCount sets ProcessedSamplesCount field to given value. + +### HasProcessedSamplesCount + +`func (o *SampleCollection) HasProcessedSamplesCount() bool` + +HasProcessedSamplesCount returns a boolean if a field has been set. + +### GetPopulationStatus + +`func (o *SampleCollection) GetPopulationStatus() CollectionPopulationStatus` + +GetPopulationStatus returns the PopulationStatus field if non-nil, zero value otherwise. + +### GetPopulationStatusOk + +`func (o *SampleCollection) GetPopulationStatusOk() (*CollectionPopulationStatus, bool)` + +GetPopulationStatusOk returns a tuple with the PopulationStatus field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetPopulationStatus + +`func (o *SampleCollection) SetPopulationStatus(v CollectionPopulationStatus)` + +SetPopulationStatus sets PopulationStatus field to given value. + + ### GetSamplesCount `func (o *SampleCollection) GetSamplesCount() float64` diff --git a/pkg/tensorleapapi/docs/ScatterFilter.md b/pkg/tensorleapapi/docs/ScatterFilter.md index 06263c2f..f8ca3703 100644 --- a/pkg/tensorleapapi/docs/ScatterFilter.md +++ b/pkg/tensorleapapi/docs/ScatterFilter.md @@ -7,6 +7,7 @@ Name | Type | Description | Notes **Metric** | **string** | | **Value** | [**ScatterFilterValue**](ScatterFilterValue.md) | | **Operator** | [**OperatorEnum**](OperatorEnum.md) | | +**RankBy** | Pointer to **string** | | [optional] ## Methods @@ -87,6 +88,31 @@ and a boolean to check if the value has been set. SetOperator sets Operator field to given value. +### GetRankBy + +`func (o *ScatterFilter) GetRankBy() string` + +GetRankBy returns the RankBy field if non-nil, zero value otherwise. + +### GetRankByOk + +`func (o *ScatterFilter) GetRankByOk() (*string, bool)` + +GetRankByOk returns a tuple with the RankBy field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetRankBy + +`func (o *ScatterFilter) SetRankBy(v string)` + +SetRankBy sets RankBy field to given value. + +### HasRankBy + +`func (o *ScatterFilter) HasRankBy() bool` + +HasRankBy returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/SessionTest.md b/pkg/tensorleapapi/docs/SessionTest.md index abae415c..bbe37722 100644 --- a/pkg/tensorleapapi/docs/SessionTest.md +++ b/pkg/tensorleapapi/docs/SessionTest.md @@ -13,6 +13,7 @@ Name | Type | Description | Notes **CreatedBy** | **string** | | **TestFilter** | [**ClientFilterParams**](ClientFilterParams.md) | | **DatasetFilter** | [**[]ESFilter**](ESFilter.md) | | +**Description** | Pointer to **string** | | [optional] ## Methods @@ -213,6 +214,31 @@ and a boolean to check if the value has been set. SetDatasetFilter sets DatasetFilter field to given value. +### GetDescription + +`func (o *SessionTest) GetDescription() string` + +GetDescription returns the Description field if non-nil, zero value otherwise. + +### GetDescriptionOk + +`func (o *SessionTest) GetDescriptionOk() (*string, bool)` + +GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDescription + +`func (o *SessionTest) SetDescription(v string)` + +SetDescription sets Description field to given value. + +### HasDescription + +`func (o *SessionTest) HasDescription() bool` + +HasDescription returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/SetVersionUpdateActionsParams.md b/pkg/tensorleapapi/docs/SetVersionUpdateActionsParams.md new file mode 100644 index 00000000..09dd4d22 --- /dev/null +++ b/pkg/tensorleapapi/docs/SetVersionUpdateActionsParams.md @@ -0,0 +1,93 @@ +# SetVersionUpdateActionsParams + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**VersionId** | **string** | | +**ProjectId** | **string** | | +**UpdateActions** | [**[]UpdateAction**](UpdateAction.md) | | + +## Methods + +### NewSetVersionUpdateActionsParams + +`func NewSetVersionUpdateActionsParams(versionId string, projectId string, updateActions []UpdateAction, ) *SetVersionUpdateActionsParams` + +NewSetVersionUpdateActionsParams instantiates a new SetVersionUpdateActionsParams object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewSetVersionUpdateActionsParamsWithDefaults + +`func NewSetVersionUpdateActionsParamsWithDefaults() *SetVersionUpdateActionsParams` + +NewSetVersionUpdateActionsParamsWithDefaults instantiates a new SetVersionUpdateActionsParams object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetVersionId + +`func (o *SetVersionUpdateActionsParams) GetVersionId() string` + +GetVersionId returns the VersionId field if non-nil, zero value otherwise. + +### GetVersionIdOk + +`func (o *SetVersionUpdateActionsParams) GetVersionIdOk() (*string, bool)` + +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVersionId + +`func (o *SetVersionUpdateActionsParams) SetVersionId(v string)` + +SetVersionId sets VersionId field to given value. + + +### GetProjectId + +`func (o *SetVersionUpdateActionsParams) GetProjectId() string` + +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. + +### GetProjectIdOk + +`func (o *SetVersionUpdateActionsParams) GetProjectIdOk() (*string, bool)` + +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProjectId + +`func (o *SetVersionUpdateActionsParams) SetProjectId(v string)` + +SetProjectId sets ProjectId field to given value. + + +### GetUpdateActions + +`func (o *SetVersionUpdateActionsParams) GetUpdateActions() []UpdateAction` + +GetUpdateActions returns the UpdateActions field if non-nil, zero value otherwise. + +### GetUpdateActionsOk + +`func (o *SetVersionUpdateActionsParams) GetUpdateActionsOk() (*[]UpdateAction, bool)` + +GetUpdateActionsOk returns a tuple with the UpdateActions field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetUpdateActions + +`func (o *SetVersionUpdateActionsParams) SetUpdateActions(v []UpdateAction)` + +SetUpdateActions sets UpdateActions field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/SetVersionUpdateActionsResponse.md b/pkg/tensorleapapi/docs/SetVersionUpdateActionsResponse.md new file mode 100644 index 00000000..d95dc8ca --- /dev/null +++ b/pkg/tensorleapapi/docs/SetVersionUpdateActionsResponse.md @@ -0,0 +1,51 @@ +# SetVersionUpdateActionsResponse + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**VersionId** | **string** | | + +## Methods + +### NewSetVersionUpdateActionsResponse + +`func NewSetVersionUpdateActionsResponse(versionId string, ) *SetVersionUpdateActionsResponse` + +NewSetVersionUpdateActionsResponse instantiates a new SetVersionUpdateActionsResponse object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewSetVersionUpdateActionsResponseWithDefaults + +`func NewSetVersionUpdateActionsResponseWithDefaults() *SetVersionUpdateActionsResponse` + +NewSetVersionUpdateActionsResponseWithDefaults instantiates a new SetVersionUpdateActionsResponse object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetVersionId + +`func (o *SetVersionUpdateActionsResponse) GetVersionId() string` + +GetVersionId returns the VersionId field if non-nil, zero value otherwise. + +### GetVersionIdOk + +`func (o *SetVersionUpdateActionsResponse) GetVersionIdOk() (*string, bool)` + +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVersionId + +`func (o *SetVersionUpdateActionsResponse) SetVersionId(v string)` + +SetVersionId sets VersionId field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/SettingsCategory.md b/pkg/tensorleapapi/docs/SettingsCategory.md index f33326b9..2ef8927e 100644 --- a/pkg/tensorleapapi/docs/SettingsCategory.md +++ b/pkg/tensorleapapi/docs/SettingsCategory.md @@ -9,6 +9,8 @@ * `POP_EXPLORATION` (value: `"POP_EXPLORATION"`) +* `REDIS` (value: `"REDIS"`) + * `GENERAL` (value: `"GENERAL"`) diff --git a/pkg/tensorleapapi/docs/UpdateAction.md b/pkg/tensorleapapi/docs/UpdateAction.md index c211bb43..88531fbc 100644 --- a/pkg/tensorleapapi/docs/UpdateAction.md +++ b/pkg/tensorleapapi/docs/UpdateAction.md @@ -7,6 +7,8 @@ * `UPDATE_METRIC` (value: `"update_metric"`) +* `UPDATE_METRIC_DIRECTION` (value: `"update_metric_direction"`) + * `UPDATE_VISUALIZATION` (value: `"update_visualization"`) * `UPDATE_INSIGHTS` (value: `"update_insights"`) diff --git a/pkg/tensorleapapi/docs/UpdateInsightDescriptionParams.md b/pkg/tensorleapapi/docs/UpdateInsightDescriptionParams.md new file mode 100644 index 00000000..901b6db6 --- /dev/null +++ b/pkg/tensorleapapi/docs/UpdateInsightDescriptionParams.md @@ -0,0 +1,98 @@ +# UpdateInsightDescriptionParams + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**InsightId** | **string** | | +**ProjectId** | **string** | | +**Description** | Pointer to **string** | | [optional] + +## Methods + +### NewUpdateInsightDescriptionParams + +`func NewUpdateInsightDescriptionParams(insightId string, projectId string, ) *UpdateInsightDescriptionParams` + +NewUpdateInsightDescriptionParams instantiates a new UpdateInsightDescriptionParams object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewUpdateInsightDescriptionParamsWithDefaults + +`func NewUpdateInsightDescriptionParamsWithDefaults() *UpdateInsightDescriptionParams` + +NewUpdateInsightDescriptionParamsWithDefaults instantiates a new UpdateInsightDescriptionParams object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetInsightId + +`func (o *UpdateInsightDescriptionParams) GetInsightId() string` + +GetInsightId returns the InsightId field if non-nil, zero value otherwise. + +### GetInsightIdOk + +`func (o *UpdateInsightDescriptionParams) GetInsightIdOk() (*string, bool)` + +GetInsightIdOk returns a tuple with the InsightId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInsightId + +`func (o *UpdateInsightDescriptionParams) SetInsightId(v string)` + +SetInsightId sets InsightId field to given value. + + +### GetProjectId + +`func (o *UpdateInsightDescriptionParams) GetProjectId() string` + +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. + +### GetProjectIdOk + +`func (o *UpdateInsightDescriptionParams) GetProjectIdOk() (*string, bool)` + +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProjectId + +`func (o *UpdateInsightDescriptionParams) SetProjectId(v string)` + +SetProjectId sets ProjectId field to given value. + + +### GetDescription + +`func (o *UpdateInsightDescriptionParams) GetDescription() string` + +GetDescription returns the Description field if non-nil, zero value otherwise. + +### GetDescriptionOk + +`func (o *UpdateInsightDescriptionParams) GetDescriptionOk() (*string, bool)` + +GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDescription + +`func (o *UpdateInsightDescriptionParams) SetDescription(v string)` + +SetDescription sets Description field to given value. + +### HasDescription + +`func (o *UpdateInsightDescriptionParams) HasDescription() bool` + +HasDescription returns a boolean if a field has been set. + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/UpdateSampleCollectionParams.md b/pkg/tensorleapapi/docs/UpdateSampleCollectionParams.md index f73f5843..35fd8e23 100644 --- a/pkg/tensorleapapi/docs/UpdateSampleCollectionParams.md +++ b/pkg/tensorleapapi/docs/UpdateSampleCollectionParams.md @@ -4,7 +4,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**Samples** | Pointer to [**[]SampleIdentity**](SampleIdentity.md) | | [optional] +**Included** | Pointer to [**[]SampleIdentity**](SampleIdentity.md) | | [optional] +**Excluded** | Pointer to [**[]SampleIdentity**](SampleIdentity.md) | | [optional] +**Filters** | Pointer to [**[]CollectionFilterSpec**](CollectionFilterSpec.md) | | [optional] +**VersionId** | Pointer to **string** | | [optional] **Description** | Pointer to **string** | | [optional] **Name** | Pointer to **string** | | [optional] **SampleCollectionId** | **string** | | @@ -29,30 +32,105 @@ NewUpdateSampleCollectionParamsWithDefaults instantiates a new UpdateSampleColle This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSamples +### GetIncluded -`func (o *UpdateSampleCollectionParams) GetSamples() []SampleIdentity` +`func (o *UpdateSampleCollectionParams) GetIncluded() []SampleIdentity` -GetSamples returns the Samples field if non-nil, zero value otherwise. +GetIncluded returns the Included field if non-nil, zero value otherwise. -### GetSamplesOk +### GetIncludedOk -`func (o *UpdateSampleCollectionParams) GetSamplesOk() (*[]SampleIdentity, bool)` +`func (o *UpdateSampleCollectionParams) GetIncludedOk() (*[]SampleIdentity, bool)` -GetSamplesOk returns a tuple with the Samples field if it's non-nil, zero value otherwise +GetIncludedOk returns a tuple with the Included field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSamples +### SetIncluded -`func (o *UpdateSampleCollectionParams) SetSamples(v []SampleIdentity)` +`func (o *UpdateSampleCollectionParams) SetIncluded(v []SampleIdentity)` -SetSamples sets Samples field to given value. +SetIncluded sets Included field to given value. -### HasSamples +### HasIncluded -`func (o *UpdateSampleCollectionParams) HasSamples() bool` +`func (o *UpdateSampleCollectionParams) HasIncluded() bool` -HasSamples returns a boolean if a field has been set. +HasIncluded returns a boolean if a field has been set. + +### GetExcluded + +`func (o *UpdateSampleCollectionParams) GetExcluded() []SampleIdentity` + +GetExcluded returns the Excluded field if non-nil, zero value otherwise. + +### GetExcludedOk + +`func (o *UpdateSampleCollectionParams) GetExcludedOk() (*[]SampleIdentity, bool)` + +GetExcludedOk returns a tuple with the Excluded field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetExcluded + +`func (o *UpdateSampleCollectionParams) SetExcluded(v []SampleIdentity)` + +SetExcluded sets Excluded field to given value. + +### HasExcluded + +`func (o *UpdateSampleCollectionParams) HasExcluded() bool` + +HasExcluded returns a boolean if a field has been set. + +### GetFilters + +`func (o *UpdateSampleCollectionParams) GetFilters() []CollectionFilterSpec` + +GetFilters returns the Filters field if non-nil, zero value otherwise. + +### GetFiltersOk + +`func (o *UpdateSampleCollectionParams) GetFiltersOk() (*[]CollectionFilterSpec, bool)` + +GetFiltersOk returns a tuple with the Filters field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetFilters + +`func (o *UpdateSampleCollectionParams) SetFilters(v []CollectionFilterSpec)` + +SetFilters sets Filters field to given value. + +### HasFilters + +`func (o *UpdateSampleCollectionParams) HasFilters() bool` + +HasFilters returns a boolean if a field has been set. + +### GetVersionId + +`func (o *UpdateSampleCollectionParams) GetVersionId() string` + +GetVersionId returns the VersionId field if non-nil, zero value otherwise. + +### GetVersionIdOk + +`func (o *UpdateSampleCollectionParams) GetVersionIdOk() (*string, bool)` + +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVersionId + +`func (o *UpdateSampleCollectionParams) SetVersionId(v string)` + +SetVersionId sets VersionId field to given value. + +### HasVersionId + +`func (o *UpdateSampleCollectionParams) HasVersionId() bool` + +HasVersionId returns a boolean if a field has been set. ### GetDescription diff --git a/pkg/tensorleapapi/docs/UpdateSessionTestRequest.md b/pkg/tensorleapapi/docs/UpdateSessionTestRequest.md index c9534a31..b02ba975 100644 --- a/pkg/tensorleapapi/docs/UpdateSessionTestRequest.md +++ b/pkg/tensorleapapi/docs/UpdateSessionTestRequest.md @@ -9,6 +9,7 @@ Name | Type | Description | Notes **Name** | Pointer to **string** | | [optional] **TestFilter** | Pointer to [**ClientFilterParams**](ClientFilterParams.md) | | [optional] **DatasetFilter** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**Description** | Pointer to **string** | | [optional] ## Methods @@ -144,6 +145,31 @@ SetDatasetFilter sets DatasetFilter field to given value. HasDatasetFilter returns a boolean if a field has been set. +### GetDescription + +`func (o *UpdateSessionTestRequest) GetDescription() string` + +GetDescription returns the Description field if non-nil, zero value otherwise. + +### GetDescriptionOk + +`func (o *UpdateSessionTestRequest) GetDescriptionOk() (*string, bool)` + +GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDescription + +`func (o *UpdateSessionTestRequest) SetDescription(v string)` + +SetDescription sets Description field to given value. + +### HasDescription + +`func (o *UpdateSessionTestRequest) HasDescription() bool` + +HasDescription returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/model_action_assignment_element.go b/pkg/tensorleapapi/model_action_assignment_element.go index e3194498..097de44f 100644 --- a/pkg/tensorleapapi/model_action_assignment_element.go +++ b/pkg/tensorleapapi/model_action_assignment_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_action_comment_element.go b/pkg/tensorleapapi/model_action_comment_element.go index f74cf2a1..96b18413 100644 --- a/pkg/tensorleapapi/model_action_comment_element.go +++ b/pkg/tensorleapapi/model_action_comment_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_action_tag_element.go b/pkg/tensorleapapi/model_action_tag_element.go index a4074d7c..19601b69 100644 --- a/pkg/tensorleapapi/model_action_tag_element.go +++ b/pkg/tensorleapapi/model_action_tag_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_activation_params.go b/pkg/tensorleapapi/model_activation_params.go index dffffd3d..5602de34 100644 --- a/pkg/tensorleapapi/model_activation_params.go +++ b/pkg/tensorleapapi/model_activation_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_dashboard_params.go b/pkg/tensorleapapi/model_add_dashboard_params.go index 75799fcc..69581ff7 100644 --- a/pkg/tensorleapapi/model_add_dashboard_params.go +++ b/pkg/tensorleapapi/model_add_dashboard_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_dashboard_response.go b/pkg/tensorleapapi/model_add_dashboard_response.go index 8138792a..af3620a9 100644 --- a/pkg/tensorleapapi/model_add_dashboard_response.go +++ b/pkg/tensorleapapi/model_add_dashboard_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_export_model_job_params.go b/pkg/tensorleapapi/model_add_export_model_job_params.go index 3947bb30..15232366 100644 --- a/pkg/tensorleapapi/model_add_export_model_job_params.go +++ b/pkg/tensorleapapi/model_add_export_model_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_issue_params.go b/pkg/tensorleapapi/model_add_issue_params.go index fc7fdc9a..7e533816 100644 --- a/pkg/tensorleapapi/model_add_issue_params.go +++ b/pkg/tensorleapapi/model_add_issue_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_project_response.go b/pkg/tensorleapapi/model_add_project_response.go index b3ae2cd9..a4b15fb7 100644 --- a/pkg/tensorleapapi/model_add_project_response.go +++ b/pkg/tensorleapapi/model_add_project_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_sample_collection_params.go b/pkg/tensorleapapi/model_add_sample_collection_params.go index cc065c44..772da2aa 100644 --- a/pkg/tensorleapapi/model_add_sample_collection_params.go +++ b/pkg/tensorleapapi/model_add_sample_collection_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,10 +20,13 @@ var _ MappedNullable = &AddSampleCollectionParams{} // AddSampleCollectionParams struct for AddSampleCollectionParams type AddSampleCollectionParams struct { - Samples []SampleIdentity `json:"samples,omitempty"` - ProjectId string `json:"projectId"` - Description *string `json:"description,omitempty"` - Name string `json:"name"` + Included []SampleIdentity `json:"included,omitempty"` + Excluded []SampleIdentity `json:"excluded,omitempty"` + Filters []CollectionFilterSpec `json:"filters,omitempty"` + VersionId *string `json:"versionId,omitempty"` + ProjectId string `json:"projectId"` + Description *string `json:"description,omitempty"` + Name string `json:"name"` AdditionalProperties map[string]interface{} } @@ -48,36 +51,132 @@ func NewAddSampleCollectionParamsWithDefaults() *AddSampleCollectionParams { return &this } -// GetSamples returns the Samples field value if set, zero value otherwise. -func (o *AddSampleCollectionParams) GetSamples() []SampleIdentity { - if o == nil || IsNil(o.Samples) { +// GetIncluded returns the Included field value if set, zero value otherwise. +func (o *AddSampleCollectionParams) GetIncluded() []SampleIdentity { + if o == nil || IsNil(o.Included) { var ret []SampleIdentity return ret } - return o.Samples + return o.Included } -// GetSamplesOk returns a tuple with the Samples field value if set, nil otherwise +// GetIncludedOk returns a tuple with the Included field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *AddSampleCollectionParams) GetSamplesOk() ([]SampleIdentity, bool) { - if o == nil || IsNil(o.Samples) { +func (o *AddSampleCollectionParams) GetIncludedOk() ([]SampleIdentity, bool) { + if o == nil || IsNil(o.Included) { return nil, false } - return o.Samples, true + return o.Included, true } -// HasSamples returns a boolean if a field has been set. -func (o *AddSampleCollectionParams) HasSamples() bool { - if o != nil && !IsNil(o.Samples) { +// HasIncluded returns a boolean if a field has been set. +func (o *AddSampleCollectionParams) HasIncluded() bool { + if o != nil && !IsNil(o.Included) { return true } return false } -// SetSamples gets a reference to the given []SampleIdentity and assigns it to the Samples field. -func (o *AddSampleCollectionParams) SetSamples(v []SampleIdentity) { - o.Samples = v +// SetIncluded gets a reference to the given []SampleIdentity and assigns it to the Included field. +func (o *AddSampleCollectionParams) SetIncluded(v []SampleIdentity) { + o.Included = v +} + +// GetExcluded returns the Excluded field value if set, zero value otherwise. +func (o *AddSampleCollectionParams) GetExcluded() []SampleIdentity { + if o == nil || IsNil(o.Excluded) { + var ret []SampleIdentity + return ret + } + return o.Excluded +} + +// GetExcludedOk returns a tuple with the Excluded field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *AddSampleCollectionParams) GetExcludedOk() ([]SampleIdentity, bool) { + if o == nil || IsNil(o.Excluded) { + return nil, false + } + return o.Excluded, true +} + +// HasExcluded returns a boolean if a field has been set. +func (o *AddSampleCollectionParams) HasExcluded() bool { + if o != nil && !IsNil(o.Excluded) { + return true + } + + return false +} + +// SetExcluded gets a reference to the given []SampleIdentity and assigns it to the Excluded field. +func (o *AddSampleCollectionParams) SetExcluded(v []SampleIdentity) { + o.Excluded = v +} + +// GetFilters returns the Filters field value if set, zero value otherwise. +func (o *AddSampleCollectionParams) GetFilters() []CollectionFilterSpec { + if o == nil || IsNil(o.Filters) { + var ret []CollectionFilterSpec + return ret + } + return o.Filters +} + +// GetFiltersOk returns a tuple with the Filters field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *AddSampleCollectionParams) GetFiltersOk() ([]CollectionFilterSpec, bool) { + if o == nil || IsNil(o.Filters) { + return nil, false + } + return o.Filters, true +} + +// HasFilters returns a boolean if a field has been set. +func (o *AddSampleCollectionParams) HasFilters() bool { + if o != nil && !IsNil(o.Filters) { + return true + } + + return false +} + +// SetFilters gets a reference to the given []CollectionFilterSpec and assigns it to the Filters field. +func (o *AddSampleCollectionParams) SetFilters(v []CollectionFilterSpec) { + o.Filters = v +} + +// GetVersionId returns the VersionId field value if set, zero value otherwise. +func (o *AddSampleCollectionParams) GetVersionId() string { + if o == nil || IsNil(o.VersionId) { + var ret string + return ret + } + return *o.VersionId +} + +// GetVersionIdOk returns a tuple with the VersionId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *AddSampleCollectionParams) GetVersionIdOk() (*string, bool) { + if o == nil || IsNil(o.VersionId) { + return nil, false + } + return o.VersionId, true +} + +// HasVersionId returns a boolean if a field has been set. +func (o *AddSampleCollectionParams) HasVersionId() bool { + if o != nil && !IsNil(o.VersionId) { + return true + } + + return false +} + +// SetVersionId gets a reference to the given string and assigns it to the VersionId field. +func (o *AddSampleCollectionParams) SetVersionId(v string) { + o.VersionId = &v } // GetProjectId returns the ProjectId field value @@ -170,8 +269,17 @@ func (o AddSampleCollectionParams) MarshalJSON() ([]byte, error) { func (o AddSampleCollectionParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - if !IsNil(o.Samples) { - toSerialize["samples"] = o.Samples + if !IsNil(o.Included) { + toSerialize["included"] = o.Included + } + if !IsNil(o.Excluded) { + toSerialize["excluded"] = o.Excluded + } + if !IsNil(o.Filters) { + toSerialize["filters"] = o.Filters + } + if !IsNil(o.VersionId) { + toSerialize["versionId"] = o.VersionId } toSerialize["projectId"] = o.ProjectId if !IsNil(o.Description) { @@ -222,7 +330,10 @@ func (o *AddSampleCollectionParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "samples") + delete(additionalProperties, "included") + delete(additionalProperties, "excluded") + delete(additionalProperties, "filters") + delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") delete(additionalProperties, "description") delete(additionalProperties, "name") diff --git a/pkg/tensorleapapi/model_add_sample_collection_response.go b/pkg/tensorleapapi/model_add_sample_collection_response.go index 5f1b5bb4..4f620228 100644 --- a/pkg/tensorleapapi/model_add_sample_collection_response.go +++ b/pkg/tensorleapapi/model_add_sample_collection_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,7 +20,8 @@ var _ MappedNullable = &AddSampleCollectionResponse{} // AddSampleCollectionResponse struct for AddSampleCollectionResponse type AddSampleCollectionResponse struct { - Cid string `json:"cid"` + PopulationStatus CollectionPopulationStatus `json:"populationStatus"` + Cid string `json:"cid"` AdditionalProperties map[string]interface{} } @@ -30,8 +31,9 @@ type _AddSampleCollectionResponse AddSampleCollectionResponse // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewAddSampleCollectionResponse(cid string) *AddSampleCollectionResponse { +func NewAddSampleCollectionResponse(populationStatus CollectionPopulationStatus, cid string) *AddSampleCollectionResponse { this := AddSampleCollectionResponse{} + this.PopulationStatus = populationStatus this.Cid = cid return &this } @@ -44,6 +46,30 @@ func NewAddSampleCollectionResponseWithDefaults() *AddSampleCollectionResponse { return &this } +// GetPopulationStatus returns the PopulationStatus field value +func (o *AddSampleCollectionResponse) GetPopulationStatus() CollectionPopulationStatus { + if o == nil { + var ret CollectionPopulationStatus + return ret + } + + return o.PopulationStatus +} + +// GetPopulationStatusOk returns a tuple with the PopulationStatus field value +// and a boolean to check if the value has been set. +func (o *AddSampleCollectionResponse) GetPopulationStatusOk() (*CollectionPopulationStatus, bool) { + if o == nil { + return nil, false + } + return &o.PopulationStatus, true +} + +// SetPopulationStatus sets field value +func (o *AddSampleCollectionResponse) SetPopulationStatus(v CollectionPopulationStatus) { + o.PopulationStatus = v +} + // GetCid returns the Cid field value func (o *AddSampleCollectionResponse) GetCid() string { if o == nil { @@ -78,6 +104,7 @@ func (o AddSampleCollectionResponse) MarshalJSON() ([]byte, error) { func (o AddSampleCollectionResponse) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} + toSerialize["populationStatus"] = o.PopulationStatus toSerialize["cid"] = o.Cid for key, value := range o.AdditionalProperties { @@ -92,6 +119,7 @@ func (o *AddSampleCollectionResponse) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ + "populationStatus", "cid", } @@ -122,6 +150,7 @@ func (o *AddSampleCollectionResponse) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "populationStatus") delete(additionalProperties, "cid") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_add_secret_manager_params.go b/pkg/tensorleapapi/model_add_secret_manager_params.go index 59422b2a..c9ce0a9b 100644 --- a/pkg/tensorleapapi/model_add_secret_manager_params.go +++ b/pkg/tensorleapapi/model_add_secret_manager_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_secret_manager_response.go b/pkg/tensorleapapi/model_add_secret_manager_response.go index b3fdfd48..a9932fd9 100644 --- a/pkg/tensorleapapi/model_add_secret_manager_response.go +++ b/pkg/tensorleapapi/model_add_secret_manager_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_aggregation_method.go b/pkg/tensorleapapi/model_aggregation_method.go index 3e272339..9223019a 100644 --- a/pkg/tensorleapapi/model_aggregation_method.go +++ b/pkg/tensorleapapi/model_aggregation_method.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_aggregations.go b/pkg/tensorleapapi/model_aggregations.go index de044fd0..15553ac3 100644 --- a/pkg/tensorleapapi/model_aggregations.go +++ b/pkg/tensorleapapi/model_aggregations.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_aggressor_fixing.go b/pkg/tensorleapapi/model_aggressor_fixing.go index 0e57f42a..15ff7db1 100644 --- a/pkg/tensorleapapi/model_aggressor_fixing.go +++ b/pkg/tensorleapapi/model_aggressor_fixing.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_all_sessions_test_results.go b/pkg/tensorleapapi/model_all_sessions_test_results.go index 0b23f802..fd5b266e 100644 --- a/pkg/tensorleapapi/model_all_sessions_test_results.go +++ b/pkg/tensorleapapi/model_all_sessions_test_results.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analytics_dashlet.go b/pkg/tensorleapapi/model_analytics_dashlet.go index 70da837f..345c4eba 100644 --- a/pkg/tensorleapapi/model_analytics_dashlet.go +++ b/pkg/tensorleapapi/model_analytics_dashlet.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analytics_dashlet_data.go b/pkg/tensorleapapi/model_analytics_dashlet_data.go index 2232916a..9b462278 100644 --- a/pkg/tensorleapapi/model_analytics_dashlet_data.go +++ b/pkg/tensorleapapi/model_analytics_dashlet_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analytics_dashlet_type.go b/pkg/tensorleapapi/model_analytics_dashlet_type.go index 62f673ce..a99c1755 100644 --- a/pkg/tensorleapapi/model_analytics_dashlet_type.go +++ b/pkg/tensorleapapi/model_analytics_dashlet_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analyze_params.go b/pkg/tensorleapapi/model_analyze_params.go index 694aa6a2..e87f0bb0 100644 --- a/pkg/tensorleapapi/model_analyze_params.go +++ b/pkg/tensorleapapi/model_analyze_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analyze_type_enum.go b/pkg/tensorleapapi/model_analyze_type_enum.go index 788d85ea..509dd4e9 100644 --- a/pkg/tensorleapapi/model_analyze_type_enum.go +++ b/pkg/tensorleapapi/model_analyze_type_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_apply_insights_status_params.go b/pkg/tensorleapapi/model_apply_insights_status_params.go index ff8b437d..561fe59c 100644 --- a/pkg/tensorleapapi/model_apply_insights_status_params.go +++ b/pkg/tensorleapapi/model_apply_insights_status_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_auth_provider_enum.go b/pkg/tensorleapapi/model_auth_provider_enum.go index 88741d48..c1985377 100644 --- a/pkg/tensorleapapi/model_auth_provider_enum.go +++ b/pkg/tensorleapapi/model_auth_provider_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_auth_status.go b/pkg/tensorleapapi/model_auth_status.go index 8b490d02..d63f4826 100644 --- a/pkg/tensorleapapi/model_auth_status.go +++ b/pkg/tensorleapapi/model_auth_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_available_latent_space.go b/pkg/tensorleapapi/model_available_latent_space.go index 1455b186..a69d027e 100644 --- a/pkg/tensorleapapi/model_available_latent_space.go +++ b/pkg/tensorleapapi/model_available_latent_space.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_b_box_image_data.go b/pkg/tensorleapapi/model_b_box_image_data.go index db251e68..b838a456 100644 --- a/pkg/tensorleapapi/model_b_box_image_data.go +++ b/pkg/tensorleapapi/model_b_box_image_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_b_box_image_viz.go b/pkg/tensorleapapi/model_b_box_image_viz.go index 3f45a56e..ff0bdb08 100644 --- a/pkg/tensorleapapi/model_b_box_image_viz.go +++ b/pkg/tensorleapapi/model_b_box_image_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_base_split_agg.go b/pkg/tensorleapapi/model_base_split_agg.go index ea36ddba..69a302f6 100644 --- a/pkg/tensorleapapi/model_base_split_agg.go +++ b/pkg/tensorleapapi/model_base_split_agg.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_basic_visualization_info.go b/pkg/tensorleapapi/model_basic_visualization_info.go index 3c24df76..2e2e1529 100644 --- a/pkg/tensorleapapi/model_basic_visualization_info.go +++ b/pkg/tensorleapapi/model_basic_visualization_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_bool_schema.go b/pkg/tensorleapapi/model_bool_schema.go index 2e6a9c30..5f613c03 100644 --- a/pkg/tensorleapapi/model_bool_schema.go +++ b/pkg/tensorleapapi/model_bool_schema.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_bounding_box.go b/pkg/tensorleapapi/model_bounding_box.go index e7d043f4..a89c7edb 100644 --- a/pkg/tensorleapapi/model_bounding_box.go +++ b/pkg/tensorleapapi/model_bounding_box.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_calc_population_exploration_digest_params.go b/pkg/tensorleapapi/model_calc_population_exploration_digest_params.go index 10973667..ff065761 100644 --- a/pkg/tensorleapapi/model_calc_population_exploration_digest_params.go +++ b/pkg/tensorleapapi/model_calc_population_exploration_digest_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_calc_population_exploration_digest_response.go b/pkg/tensorleapapi/model_calc_population_exploration_digest_response.go index 8b7a74eb..6e7f3fe6 100644 --- a/pkg/tensorleapapi/model_calc_population_exploration_digest_response.go +++ b/pkg/tensorleapapi/model_calc_population_exploration_digest_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_chart_data.go b/pkg/tensorleapapi/model_chart_data.go index 989cccac..072926dd 100644 --- a/pkg/tensorleapapi/model_chart_data.go +++ b/pkg/tensorleapapi/model_chart_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_client_filter_params.go b/pkg/tensorleapapi/model_client_filter_params.go index 8971b9c4..fdc3e1d5 100644 --- a/pkg/tensorleapapi/model_client_filter_params.go +++ b/pkg/tensorleapapi/model_client_filter_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_clusters.go b/pkg/tensorleapapi/model_clusters.go index 32876609..91c64156 100644 --- a/pkg/tensorleapapi/model_clusters.go +++ b/pkg/tensorleapapi/model_clusters.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot.go b/pkg/tensorleapapi/model_code_snapshot.go index 3452a7f8..2aa267bf 100644 --- a/pkg/tensorleapapi/model_code_snapshot.go +++ b/pkg/tensorleapapi/model_code_snapshot.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot_info.go b/pkg/tensorleapapi/model_code_snapshot_info.go index 35205b52..daeb8459 100644 --- a/pkg/tensorleapapi/model_code_snapshot_info.go +++ b/pkg/tensorleapapi/model_code_snapshot_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot_result.go b/pkg/tensorleapapi/model_code_snapshot_result.go index 5df2422a..c3755803 100644 --- a/pkg/tensorleapapi/model_code_snapshot_result.go +++ b/pkg/tensorleapapi/model_code_snapshot_result.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot_setup_status.go b/pkg/tensorleapapi/model_code_snapshot_setup_status.go index a07e4ff8..92584fa1 100644 --- a/pkg/tensorleapapi/model_code_snapshot_setup_status.go +++ b/pkg/tensorleapapi/model_code_snapshot_setup_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot_upload_url_response.go b/pkg/tensorleapapi/model_code_snapshot_upload_url_response.go index 805a4330..ada628c9 100644 --- a/pkg/tensorleapapi/model_code_snapshot_upload_url_response.go +++ b/pkg/tensorleapapi/model_code_snapshot_upload_url_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_display_data.go b/pkg/tensorleapapi/model_collection_display_data.go index 969e7762..1dbee5b7 100644 --- a/pkg/tensorleapapi/model_collection_display_data.go +++ b/pkg/tensorleapapi/model_collection_display_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_filter_display_data.go b/pkg/tensorleapapi/model_collection_filter_display_data.go index b4b83b11..f0ec28d8 100644 --- a/pkg/tensorleapapi/model_collection_filter_display_data.go +++ b/pkg/tensorleapapi/model_collection_filter_display_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_filter_spec.go b/pkg/tensorleapapi/model_collection_filter_spec.go index f2e8f441..be71b4e4 100644 --- a/pkg/tensorleapapi/model_collection_filter_spec.go +++ b/pkg/tensorleapapi/model_collection_filter_spec.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_filter_spec_hidden_values_inner.go b/pkg/tensorleapapi/model_collection_filter_spec_hidden_values_inner.go index 4f075a36..4f050791 100644 --- a/pkg/tensorleapapi/model_collection_filter_spec_hidden_values_inner.go +++ b/pkg/tensorleapapi/model_collection_filter_spec_hidden_values_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_filter_spec_range.go b/pkg/tensorleapapi/model_collection_filter_spec_range.go index 7b910aea..0d03e9b0 100644 --- a/pkg/tensorleapapi/model_collection_filter_spec_range.go +++ b/pkg/tensorleapapi/model_collection_filter_spec_range.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_index_status.go b/pkg/tensorleapapi/model_collection_index_status.go index 4dd6801b..66a0f65e 100644 --- a/pkg/tensorleapapi/model_collection_index_status.go +++ b/pkg/tensorleapapi/model_collection_index_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_population_status.go b/pkg/tensorleapapi/model_collection_population_status.go new file mode 100644 index 00000000..87f594a6 --- /dev/null +++ b/pkg/tensorleapapi/model_collection_population_status.go @@ -0,0 +1,112 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.81 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// CollectionPopulationStatus Status of the async samples-blob population for a collection (distinct from CollectionIndexStatus, which tracks the downstream ES reindex). +type CollectionPopulationStatus string + +// List of CollectionPopulationStatus +const ( + COLLECTIONPOPULATIONSTATUS_PROCESSING CollectionPopulationStatus = "processing" + COLLECTIONPOPULATIONSTATUS_READY CollectionPopulationStatus = "ready" + COLLECTIONPOPULATIONSTATUS_FAILED CollectionPopulationStatus = "failed" +) + +// All allowed values of CollectionPopulationStatus enum +var AllowedCollectionPopulationStatusEnumValues = []CollectionPopulationStatus{ + "processing", + "ready", + "failed", +} + +func (v *CollectionPopulationStatus) UnmarshalJSON(src []byte) error { + var value string + err := json.Unmarshal(src, &value) + if err != nil { + return err + } + enumTypeValue := CollectionPopulationStatus(value) + for _, existing := range AllowedCollectionPopulationStatusEnumValues { + if existing == enumTypeValue { + *v = enumTypeValue + return nil + } + } + + return fmt.Errorf("%+v is not a valid CollectionPopulationStatus", value) +} + +// NewCollectionPopulationStatusFromValue returns a pointer to a valid CollectionPopulationStatus +// for the value passed as argument, or an error if the value passed is not allowed by the enum +func NewCollectionPopulationStatusFromValue(v string) (*CollectionPopulationStatus, error) { + ev := CollectionPopulationStatus(v) + if ev.IsValid() { + return &ev, nil + } else { + return nil, fmt.Errorf("invalid value '%v' for CollectionPopulationStatus: valid values are %v", v, AllowedCollectionPopulationStatusEnumValues) + } +} + +// IsValid return true if the value is valid for the enum, false otherwise +func (v CollectionPopulationStatus) IsValid() bool { + for _, existing := range AllowedCollectionPopulationStatusEnumValues { + if existing == v { + return true + } + } + return false +} + +// Ptr returns reference to CollectionPopulationStatus value +func (v CollectionPopulationStatus) Ptr() *CollectionPopulationStatus { + return &v +} + +type NullableCollectionPopulationStatus struct { + value *CollectionPopulationStatus + isSet bool +} + +func (v NullableCollectionPopulationStatus) Get() *CollectionPopulationStatus { + return v.value +} + +func (v *NullableCollectionPopulationStatus) Set(val *CollectionPopulationStatus) { + v.value = val + v.isSet = true +} + +func (v NullableCollectionPopulationStatus) IsSet() bool { + return v.isSet +} + +func (v *NullableCollectionPopulationStatus) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableCollectionPopulationStatus(val *CollectionPopulationStatus) *NullableCollectionPopulationStatus { + return &NullableCollectionPopulationStatus{value: val, isSet: true} +} + +func (v NullableCollectionPopulationStatus) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableCollectionPopulationStatus) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_collection_sample_row.go b/pkg/tensorleapapi/model_collection_sample_row.go index 1718975c..9b5bb7b0 100644 --- a/pkg/tensorleapapi/model_collection_sample_row.go +++ b/pkg/tensorleapapi/model_collection_sample_row.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_sample_row_value.go b/pkg/tensorleapapi/model_collection_sample_row_value.go index 46d077e8..5b5b3128 100644 --- a/pkg/tensorleapapi/model_collection_sample_row_value.go +++ b/pkg/tensorleapapi/model_collection_sample_row_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_sort_spec.go b/pkg/tensorleapapi/model_collection_sort_spec.go index 5d9cfeba..891c4497 100644 --- a/pkg/tensorleapapi/model_collection_sort_spec.go +++ b/pkg/tensorleapapi/model_collection_sort_spec.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_composite_viz_data.go b/pkg/tensorleapapi/model_composite_viz_data.go index 11ca320b..6df65208 100644 --- a/pkg/tensorleapapi/model_composite_viz_data.go +++ b/pkg/tensorleapapi/model_composite_viz_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_composite_viz_item.go b/pkg/tensorleapapi/model_composite_viz_item.go index a9a75604..43ff666e 100644 --- a/pkg/tensorleapapi/model_composite_viz_item.go +++ b/pkg/tensorleapapi/model_composite_viz_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_confusion_matrix_labels_response.go b/pkg/tensorleapapi/model_confusion_matrix_labels_response.go index 59feb277..cd6778d3 100644 --- a/pkg/tensorleapapi/model_confusion_matrix_labels_response.go +++ b/pkg/tensorleapapi/model_confusion_matrix_labels_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_confusion_matrix_params.go b/pkg/tensorleapapi/model_confusion_matrix_params.go index 611ba620..aba3334d 100644 --- a/pkg/tensorleapapi/model_confusion_matrix_params.go +++ b/pkg/tensorleapapi/model_confusion_matrix_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_confusion_matrix_table_params.go b/pkg/tensorleapapi/model_confusion_matrix_table_params.go index 389f2f26..5614ed43 100644 --- a/pkg/tensorleapapi/model_confusion_matrix_table_params.go +++ b/pkg/tensorleapapi/model_confusion_matrix_table_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_confusion_metric_names_params.go b/pkg/tensorleapapi/model_confusion_metric_names_params.go index 1517c7c0..8a072795 100644 --- a/pkg/tensorleapapi/model_confusion_metric_names_params.go +++ b/pkg/tensorleapapi/model_confusion_metric_names_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_confusion_metric_names_response.go b/pkg/tensorleapapi/model_confusion_metric_names_response.go index bb8a0e7b..b3a1b9a6 100644 --- a/pkg/tensorleapapi/model_confusion_metric_names_response.go +++ b/pkg/tensorleapapi/model_confusion_metric_names_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_continue_evaluate_params.go b/pkg/tensorleapapi/model_continue_evaluate_params.go index 0757a648..e73a30fd 100644 --- a/pkg/tensorleapapi/model_continue_evaluate_params.go +++ b/pkg/tensorleapapi/model_continue_evaluate_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_continue_update_evaluate_params.go b/pkg/tensorleapapi/model_continue_update_evaluate_params.go index 7a713fd2..bbcd27c2 100644 --- a/pkg/tensorleapapi/model_continue_update_evaluate_params.go +++ b/pkg/tensorleapapi/model_continue_update_evaluate_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_continues_agg.go b/pkg/tensorleapapi/model_continues_agg.go index 2537298d..1ba182a9 100644 --- a/pkg/tensorleapapi/model_continues_agg.go +++ b/pkg/tensorleapapi/model_continues_agg.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_sample_visualizations_params.go b/pkg/tensorleapapi/model_create_sample_visualizations_params.go index 32192ae3..d3dc7737 100644 --- a/pkg/tensorleapapi/model_create_sample_visualizations_params.go +++ b/pkg/tensorleapapi/model_create_sample_visualizations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_session_test_request.go b/pkg/tensorleapapi/model_create_session_test_request.go index 055bdf95..54bf6467 100644 --- a/pkg/tensorleapapi/model_create_session_test_request.go +++ b/pkg/tensorleapapi/model_create_session_test_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -24,6 +24,7 @@ type CreateSessionTestRequest struct { Name string `json:"name"` TestFilter ClientFilterParams `json:"testFilter"` DatasetFilter []ESFilter `json:"datasetFilter,omitempty"` + Description *string `json:"description,omitempty"` AdditionalProperties map[string]interface{} } @@ -153,6 +154,38 @@ func (o *CreateSessionTestRequest) SetDatasetFilter(v []ESFilter) { o.DatasetFilter = v } +// GetDescription returns the Description field value if set, zero value otherwise. +func (o *CreateSessionTestRequest) GetDescription() string { + if o == nil || IsNil(o.Description) { + var ret string + return ret + } + return *o.Description +} + +// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CreateSessionTestRequest) GetDescriptionOk() (*string, bool) { + if o == nil || IsNil(o.Description) { + return nil, false + } + return o.Description, true +} + +// HasDescription returns a boolean if a field has been set. +func (o *CreateSessionTestRequest) HasDescription() bool { + if o != nil && !IsNil(o.Description) { + return true + } + + return false +} + +// SetDescription gets a reference to the given string and assigns it to the Description field. +func (o *CreateSessionTestRequest) SetDescription(v string) { + o.Description = &v +} + func (o CreateSessionTestRequest) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -169,6 +202,9 @@ func (o CreateSessionTestRequest) ToMap() (map[string]interface{}, error) { if !IsNil(o.DatasetFilter) { toSerialize["datasetFilter"] = o.DatasetFilter } + if !IsNil(o.Description) { + toSerialize["description"] = o.Description + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -218,6 +254,7 @@ func (o *CreateSessionTestRequest) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "name") delete(additionalProperties, "testFilter") delete(additionalProperties, "datasetFilter") + delete(additionalProperties, "description") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_create_streaming_samples_vis_job_params.go b/pkg/tensorleapapi/model_create_streaming_samples_vis_job_params.go index dedc2622..a68a3f98 100644 --- a/pkg/tensorleapapi/model_create_streaming_samples_vis_job_params.go +++ b/pkg/tensorleapapi/model_create_streaming_samples_vis_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_streaming_samples_vis_job_response.go b/pkg/tensorleapapi/model_create_streaming_samples_vis_job_response.go index e7a7cc21..7b9bae5e 100644 --- a/pkg/tensorleapapi/model_create_streaming_samples_vis_job_response.go +++ b/pkg/tensorleapapi/model_create_streaming_samples_vis_job_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_team_request.go b/pkg/tensorleapapi/model_create_team_request.go index bf787da0..7283321c 100644 --- a/pkg/tensorleapapi/model_create_team_request.go +++ b/pkg/tensorleapapi/model_create_team_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_team_response.go b/pkg/tensorleapapi/model_create_team_response.go index 99287c44..801ce0e2 100644 --- a/pkg/tensorleapapi/model_create_team_response.go +++ b/pkg/tensorleapapi/model_create_team_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_custom_layer_instance.go b/pkg/tensorleapapi/model_custom_layer_instance.go index bdeca977..fb153e85 100644 --- a/pkg/tensorleapapi/model_custom_layer_instance.go +++ b/pkg/tensorleapapi/model_custom_layer_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_custom_loss_instance.go b/pkg/tensorleapapi/model_custom_loss_instance.go index 76b71cee..00834a4b 100644 --- a/pkg/tensorleapapi/model_custom_loss_instance.go +++ b/pkg/tensorleapapi/model_custom_loss_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_custom_message_data.go b/pkg/tensorleapapi/model_custom_message_data.go index 4d9ad482..aa96432d 100644 --- a/pkg/tensorleapapi/model_custom_message_data.go +++ b/pkg/tensorleapapi/model_custom_message_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_custom_message_data_params.go b/pkg/tensorleapapi/model_custom_message_data_params.go index 724b806d..efead407 100644 --- a/pkg/tensorleapapi/model_custom_message_data_params.go +++ b/pkg/tensorleapapi/model_custom_message_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dashboard.go b/pkg/tensorleapapi/model_dashboard.go index ab51d30b..acf7f34e 100644 --- a/pkg/tensorleapapi/model_dashboard.go +++ b/pkg/tensorleapapi/model_dashboard.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dashlet.go b/pkg/tensorleapapi/model_dashlet.go index f15af44a..9d9d8f99 100644 --- a/pkg/tensorleapapi/model_dashlet.go +++ b/pkg/tensorleapapi/model_dashlet.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_data_leakage_insight.go b/pkg/tensorleapapi/model_data_leakage_insight.go index 2ad6042a..654b5573 100644 --- a/pkg/tensorleapapi/model_data_leakage_insight.go +++ b/pkg/tensorleapapi/model_data_leakage_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_data_state_type.go b/pkg/tensorleapapi/model_data_state_type.go index fc7466af..5690027e 100644 --- a/pkg/tensorleapapi/model_data_state_type.go +++ b/pkg/tensorleapapi/model_data_state_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_data_type_enum.go b/pkg/tensorleapapi/model_data_type_enum.go index 717a5920..16e5a094 100644 --- a/pkg/tensorleapapi/model_data_type_enum.go +++ b/pkg/tensorleapapi/model_data_type_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_balancing.go b/pkg/tensorleapapi/model_dataset_balancing.go index 4421a6a7..f84769e0 100644 --- a/pkg/tensorleapapi/model_dataset_balancing.go +++ b/pkg/tensorleapapi/model_dataset_balancing.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_balancing_job_params.go b/pkg/tensorleapapi/model_dataset_balancing_job_params.go index c51486d7..ec7f6a6e 100644 --- a/pkg/tensorleapapi/model_dataset_balancing_job_params.go +++ b/pkg/tensorleapapi/model_dataset_balancing_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_balancing_response.go b/pkg/tensorleapapi/model_dataset_balancing_response.go index 9331b296..c37b44f7 100644 --- a/pkg/tensorleapapi/model_dataset_balancing_response.go +++ b/pkg/tensorleapapi/model_dataset_balancing_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_input_instance.go b/pkg/tensorleapapi/model_dataset_input_instance.go index a1fe81fe..2e353971 100644 --- a/pkg/tensorleapapi/model_dataset_input_instance.go +++ b/pkg/tensorleapapi/model_dataset_input_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_message_params.go b/pkg/tensorleapapi/model_dataset_message_params.go index c7eb8153..d8fe707d 100644 --- a/pkg/tensorleapapi/model_dataset_message_params.go +++ b/pkg/tensorleapapi/model_dataset_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_metadata_instance.go b/pkg/tensorleapapi/model_dataset_metadata_instance.go index 0f3a812c..425b8d44 100644 --- a/pkg/tensorleapapi/model_dataset_metadata_instance.go +++ b/pkg/tensorleapapi/model_dataset_metadata_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_metadata_type.go b/pkg/tensorleapapi/model_dataset_metadata_type.go index e67aa4c0..4a91717e 100644 --- a/pkg/tensorleapapi/model_dataset_metadata_type.go +++ b/pkg/tensorleapapi/model_dataset_metadata_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_output_instance.go b/pkg/tensorleapapi/model_dataset_output_instance.go index abf259e8..e5ce1a39 100644 --- a/pkg/tensorleapapi/model_dataset_output_instance.go +++ b/pkg/tensorleapapi/model_dataset_output_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_preprocess.go b/pkg/tensorleapapi/model_dataset_preprocess.go index c5a208c0..45ae2ed3 100644 --- a/pkg/tensorleapapi/model_dataset_preprocess.go +++ b/pkg/tensorleapapi/model_dataset_preprocess.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_setup.go b/pkg/tensorleapapi/model_dataset_setup.go index 32a60b75..83702450 100644 --- a/pkg/tensorleapapi/model_dataset_setup.go +++ b/pkg/tensorleapapi/model_dataset_setup.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_test_result_payload.go b/pkg/tensorleapapi/model_dataset_test_result_payload.go index 3047b11c..81926196 100644 --- a/pkg/tensorleapapi/model_dataset_test_result_payload.go +++ b/pkg/tensorleapapi/model_dataset_test_result_payload.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_dashboard_params.go b/pkg/tensorleapapi/model_delete_dashboard_params.go index 0ca4e539..958600c3 100644 --- a/pkg/tensorleapapi/model_delete_dashboard_params.go +++ b/pkg/tensorleapapi/model_delete_dashboard_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_dataset_balancing_params.go b/pkg/tensorleapapi/model_delete_dataset_balancing_params.go index e8669eed..c67466ae 100644 --- a/pkg/tensorleapapi/model_delete_dataset_balancing_params.go +++ b/pkg/tensorleapapi/model_delete_dataset_balancing_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_generated_label_params.go b/pkg/tensorleapapi/model_delete_generated_label_params.go index 451929a8..f2b70879 100644 --- a/pkg/tensorleapapi/model_delete_generated_label_params.go +++ b/pkg/tensorleapapi/model_delete_generated_label_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_issue_params.go b/pkg/tensorleapapi/model_delete_issue_params.go index f981cafa..9872aed1 100644 --- a/pkg/tensorleapapi/model_delete_issue_params.go +++ b/pkg/tensorleapapi/model_delete_issue_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_project_params.go b/pkg/tensorleapapi/model_delete_project_params.go index eda3b86b..2962bc5d 100644 --- a/pkg/tensorleapapi/model_delete_project_params.go +++ b/pkg/tensorleapapi/model_delete_project_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_samples_analysis_params.go b/pkg/tensorleapapi/model_delete_samples_analysis_params.go index c8f43d1f..6ac59b97 100644 --- a/pkg/tensorleapapi/model_delete_samples_analysis_params.go +++ b/pkg/tensorleapapi/model_delete_samples_analysis_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_session_test_request.go b/pkg/tensorleapapi/model_delete_session_test_request.go index b9e7845b..4525d434 100644 --- a/pkg/tensorleapapi/model_delete_session_test_request.go +++ b/pkg/tensorleapapi/model_delete_session_test_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_synthetic_data_params.go b/pkg/tensorleapapi/model_delete_synthetic_data_params.go index e3bfe72f..baee9f21 100644 --- a/pkg/tensorleapapi/model_delete_synthetic_data_params.go +++ b/pkg/tensorleapapi/model_delete_synthetic_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_team_request.go b/pkg/tensorleapapi/model_delete_team_request.go index aedfe9e4..0eaaf653 100644 --- a/pkg/tensorleapapi/model_delete_team_request.go +++ b/pkg/tensorleapapi/model_delete_team_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_user_by_id_request.go b/pkg/tensorleapapi/model_delete_user_by_id_request.go index 369a8841..9bc261d3 100644 --- a/pkg/tensorleapapi/model_delete_user_by_id_request.go +++ b/pkg/tensorleapapi/model_delete_user_by_id_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_version_params.go b/pkg/tensorleapapi/model_delete_version_params.go index b5d5ac62..eb3ec820 100644 --- a/pkg/tensorleapapi/model_delete_version_params.go +++ b/pkg/tensorleapapi/model_delete_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_visualizations_params.go b/pkg/tensorleapapi/model_delete_visualizations_params.go index b1ec02bd..e898f013 100644 --- a/pkg/tensorleapapi/model_delete_visualizations_params.go +++ b/pkg/tensorleapapi/model_delete_visualizations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_direction.go b/pkg/tensorleapapi/model_direction.go index 7af8a093..9a62391a 100644 --- a/pkg/tensorleapapi/model_direction.go +++ b/pkg/tensorleapapi/model_direction.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_distinct_agg.go b/pkg/tensorleapapi/model_distinct_agg.go index 2d697f8d..d1dbfa8c 100644 --- a/pkg/tensorleapapi/model_distinct_agg.go +++ b/pkg/tensorleapapi/model_distinct_agg.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_domain_gap_insight.go b/pkg/tensorleapapi/model_domain_gap_insight.go index b7dc68cd..28769357 100644 --- a/pkg/tensorleapapi/model_domain_gap_insight.go +++ b/pkg/tensorleapapi/model_domain_gap_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_duplication_insight.go b/pkg/tensorleapapi/model_duplication_insight.go index 6e7c9e2d..dd01f5f6 100644 --- a/pkg/tensorleapapi/model_duplication_insight.go +++ b/pkg/tensorleapapi/model_duplication_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_engine_setting_key.go b/pkg/tensorleapapi/model_engine_setting_key.go index a1a28315..f0db7adb 100644 --- a/pkg/tensorleapapi/model_engine_setting_key.go +++ b/pkg/tensorleapapi/model_engine_setting_key.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -40,6 +40,9 @@ const ( ENGINESETTINGKEY_SLIM_JOB_CPU_LIMIT EngineSettingKey = "SLIM_JOB_CPU_LIMIT" ENGINESETTINGKEY_SLIM_JOB_REQUIRED_MEMORY EngineSettingKey = "SLIM_JOB_REQUIRED_MEMORY" ENGINESETTINGKEY_SLIM_JOB_LIMIT_MEMORY EngineSettingKey = "SLIM_JOB_LIMIT_MEMORY" + ENGINESETTINGKEY_PRIORITIZE_AUTO_SETTINGS_REDIS EngineSettingKey = "PRIORITIZE_AUTO_SETTINGS_REDIS" + ENGINESETTINGKEY_REDIS_MEMORY_REQUEST EngineSettingKey = "REDIS_MEMORY_REQUEST" + ENGINESETTINGKEY_REDIS_MEMORY_LIMIT EngineSettingKey = "REDIS_MEMORY_LIMIT" ENGINESETTINGKEY_PIP_INDEX_URL EngineSettingKey = "PIP_INDEX_URL" ENGINESETTINGKEY_PIP_EXTRA_INDEX_URL EngineSettingKey = "PIP_EXTRA_INDEX_URL" ENGINESETTINGKEY_WARMUP_TIMEOUT_MINUTES EngineSettingKey = "WARMUP_TIMEOUT_MINUTES" @@ -68,6 +71,9 @@ var AllowedEngineSettingKeyEnumValues = []EngineSettingKey{ "SLIM_JOB_CPU_LIMIT", "SLIM_JOB_REQUIRED_MEMORY", "SLIM_JOB_LIMIT_MEMORY", + "PRIORITIZE_AUTO_SETTINGS_REDIS", + "REDIS_MEMORY_REQUEST", + "REDIS_MEMORY_LIMIT", "PIP_INDEX_URL", "PIP_EXTRA_INDEX_URL", "WARMUP_TIMEOUT_MINUTES", diff --git a/pkg/tensorleapapi/model_ensure_collection_index_params.go b/pkg/tensorleapapi/model_ensure_collection_index_params.go index c44adb70..ea991c3d 100644 --- a/pkg/tensorleapapi/model_ensure_collection_index_params.go +++ b/pkg/tensorleapapi/model_ensure_collection_index_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_ensure_collection_index_response.go b/pkg/tensorleapapi/model_ensure_collection_index_response.go index f9fed26e..9a3e4aae 100644 --- a/pkg/tensorleapapi/model_ensure_collection_index_response.go +++ b/pkg/tensorleapapi/model_ensure_collection_index_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_data.go b/pkg/tensorleapapi/model_epoch_data.go index c4870458..1824a1e7 100644 --- a/pkg/tensorleapapi/model_epoch_data.go +++ b/pkg/tensorleapapi/model_epoch_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_data_external_data.go b/pkg/tensorleapapi/model_epoch_data_external_data.go index 21bf3d4e..5f92f648 100644 --- a/pkg/tensorleapapi/model_epoch_data_external_data.go +++ b/pkg/tensorleapapi/model_epoch_data_external_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_metrics_value.go b/pkg/tensorleapapi/model_epoch_metrics_value.go index ea47ac33..c4fedd30 100644 --- a/pkg/tensorleapapi/model_epoch_metrics_value.go +++ b/pkg/tensorleapapi/model_epoch_metrics_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_metrics_value_any_of.go b/pkg/tensorleapapi/model_epoch_metrics_value_any_of.go index 272eff5e..a8ab3cd0 100644 --- a/pkg/tensorleapapi/model_epoch_metrics_value_any_of.go +++ b/pkg/tensorleapapi/model_epoch_metrics_value_any_of.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_metrics_value_any_of_1.go b/pkg/tensorleapapi/model_epoch_metrics_value_any_of_1.go index f08fd569..b2ed9a4b 100644 --- a/pkg/tensorleapapi/model_epoch_metrics_value_any_of_1.go +++ b/pkg/tensorleapapi/model_epoch_metrics_value_any_of_1.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_metrics_value_any_of_2.go b/pkg/tensorleapapi/model_epoch_metrics_value_any_of_2.go index b360ff3a..4cc7af8d 100644 --- a/pkg/tensorleapapi/model_epoch_metrics_value_any_of_2.go +++ b/pkg/tensorleapapi/model_epoch_metrics_value_any_of_2.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_es_filter.go b/pkg/tensorleapapi/model_es_filter.go index 381dc07c..2335bcf7 100644 --- a/pkg/tensorleapapi/model_es_filter.go +++ b/pkg/tensorleapapi/model_es_filter.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_es_filter_value.go b/pkg/tensorleapapi/model_es_filter_value.go index 1511e66d..e20df3bd 100644 --- a/pkg/tensorleapapi/model_es_filter_value.go +++ b/pkg/tensorleapapi/model_es_filter_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_evaluate_existing_version_params.go b/pkg/tensorleapapi/model_evaluate_existing_version_params.go index 440ae50f..1d197d81 100644 --- a/pkg/tensorleapapi/model_evaluate_existing_version_params.go +++ b/pkg/tensorleapapi/model_evaluate_existing_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_evaluate_new_version_params.go b/pkg/tensorleapapi/model_evaluate_new_version_params.go index ef062e15..74090cc9 100644 --- a/pkg/tensorleapapi/model_evaluate_new_version_params.go +++ b/pkg/tensorleapapi/model_evaluate_new_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_evaluate_params.go b/pkg/tensorleapapi/model_evaluate_params.go index f9e324ab..a8a5dcbf 100644 --- a/pkg/tensorleapapi/model_evaluate_params.go +++ b/pkg/tensorleapapi/model_evaluate_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_events_snapshot.go b/pkg/tensorleapapi/model_events_snapshot.go index fa262a53..79f77b17 100644 --- a/pkg/tensorleapapi/model_events_snapshot.go +++ b/pkg/tensorleapapi/model_events_snapshot.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_model_params.go b/pkg/tensorleapapi/model_export_model_params.go index 59bdb633..0557889c 100644 --- a/pkg/tensorleapapi/model_export_model_params.go +++ b/pkg/tensorleapapi/model_export_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_model_type_enum.go b/pkg/tensorleapapi/model_export_model_type_enum.go index 76810300..335df88d 100644 --- a/pkg/tensorleapapi/model_export_model_type_enum.go +++ b/pkg/tensorleapapi/model_export_model_type_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_options.go b/pkg/tensorleapapi/model_export_options.go index ab6ae9ad..3944cd81 100644 --- a/pkg/tensorleapapi/model_export_options.go +++ b/pkg/tensorleapapi/model_export_options.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_project_meta.go b/pkg/tensorleapapi/model_export_project_meta.go index 176a3761..3fbacdb9 100644 --- a/pkg/tensorleapapi/model_export_project_meta.go +++ b/pkg/tensorleapapi/model_export_project_meta.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_project_params.go b/pkg/tensorleapapi/model_export_project_params.go index c6c408d0..5673b403 100644 --- a/pkg/tensorleapapi/model_export_project_params.go +++ b/pkg/tensorleapapi/model_export_project_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_project_request.go b/pkg/tensorleapapi/model_export_project_request.go index ba0fe405..339dea35 100644 --- a/pkg/tensorleapapi/model_export_project_request.go +++ b/pkg/tensorleapapi/model_export_project_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_project_response.go b/pkg/tensorleapapi/model_export_project_response.go index 3c4a685e..98ce6297 100644 --- a/pkg/tensorleapapi/model_export_project_response.go +++ b/pkg/tensorleapapi/model_export_project_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_exported_model_data.go b/pkg/tensorleapapi/model_exported_model_data.go index 95e04be0..619257df 100644 --- a/pkg/tensorleapapi/model_exported_model_data.go +++ b/pkg/tensorleapapi/model_exported_model_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_extend_trial_params.go b/pkg/tensorleapapi/model_extend_trial_params.go index 5fafd12d..530d5a89 100644 --- a/pkg/tensorleapapi/model_extend_trial_params.go +++ b/pkg/tensorleapapi/model_extend_trial_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_extend_trial_response.go b/pkg/tensorleapapi/model_extend_trial_response.go index 6741b7f0..a2ba08ae 100644 --- a/pkg/tensorleapapi/model_extend_trial_response.go +++ b/pkg/tensorleapapi/model_extend_trial_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_external_import_model_storage.go b/pkg/tensorleapapi/model_external_import_model_storage.go index 2f698ad9..d0c43fbb 100644 --- a/pkg/tensorleapapi/model_external_import_model_storage.go +++ b/pkg/tensorleapapi/model_external_import_model_storage.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_failure_info.go b/pkg/tensorleapapi/model_failure_info.go index c5c838fd..aaae2871 100644 --- a/pkg/tensorleapapi/model_failure_info.go +++ b/pkg/tensorleapapi/model_failure_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_fetch_similar_filter_display_data.go b/pkg/tensorleapapi/model_fetch_similar_filter_display_data.go index 253b0f26..09fd7b3f 100644 --- a/pkg/tensorleapapi/model_fetch_similar_filter_display_data.go +++ b/pkg/tensorleapapi/model_fetch_similar_filter_display_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_fetch_similar_job_params.go b/pkg/tensorleapapi/model_fetch_similar_job_params.go index b04d2109..84deb127 100644 --- a/pkg/tensorleapapi/model_fetch_similar_job_params.go +++ b/pkg/tensorleapapi/model_fetch_similar_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_fetch_similar_request_params.go b/pkg/tensorleapapi/model_fetch_similar_request_params.go index 0c023f2f..cb68cdbe 100644 --- a/pkg/tensorleapapi/model_fetch_similar_request_params.go +++ b/pkg/tensorleapapi/model_fetch_similar_request_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_fetch_similar_response.go b/pkg/tensorleapapi/model_fetch_similar_response.go index 79a17878..acbd665f 100644 --- a/pkg/tensorleapapi/model_fetch_similar_response.go +++ b/pkg/tensorleapapi/model_fetch_similar_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_fetch_similar_response_ready_artifacts.go b/pkg/tensorleapapi/model_fetch_similar_response_ready_artifacts.go index 152e4432..157e7fa7 100644 --- a/pkg/tensorleapapi/model_fetch_similar_response_ready_artifacts.go +++ b/pkg/tensorleapapi/model_fetch_similar_response_ready_artifacts.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_filter_display_data.go b/pkg/tensorleapapi/model_filter_display_data.go index e17d1d50..4c30f01b 100644 --- a/pkg/tensorleapapi/model_filter_display_data.go +++ b/pkg/tensorleapapi/model_filter_display_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_filter_operator_type.go b/pkg/tensorleapapi/model_filter_operator_type.go index acb70463..8bc023c1 100644 --- a/pkg/tensorleapapi/model_filter_operator_type.go +++ b/pkg/tensorleapapi/model_filter_operator_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_filter_version.go b/pkg/tensorleapapi/model_filter_version.go index 78f508fc..39d29ff7 100644 --- a/pkg/tensorleapapi/model_filter_version.go +++ b/pkg/tensorleapapi/model_filter_version.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_general_message_params.go b/pkg/tensorleapapi/model_general_message_params.go index bfc7196b..94986631 100644 --- a/pkg/tensorleapapi/model_general_message_params.go +++ b/pkg/tensorleapapi/model_general_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generate_dataset_balancing_params.go b/pkg/tensorleapapi/model_generate_dataset_balancing_params.go index 318bf917..cae7dc39 100644 --- a/pkg/tensorleapapi/model_generate_dataset_balancing_params.go +++ b/pkg/tensorleapapi/model_generate_dataset_balancing_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generate_insights_params.go b/pkg/tensorleapapi/model_generate_insights_params.go index ae8a634b..57bdef69 100644 --- a/pkg/tensorleapapi/model_generate_insights_params.go +++ b/pkg/tensorleapapi/model_generate_insights_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generate_label_params.go b/pkg/tensorleapapi/model_generate_label_params.go index e77668fc..240db5ca 100644 --- a/pkg/tensorleapapi/model_generate_label_params.go +++ b/pkg/tensorleapapi/model_generate_label_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generate_streaming_samples_vis_params.go b/pkg/tensorleapapi/model_generate_streaming_samples_vis_params.go index 306deca2..a1c57f02 100644 --- a/pkg/tensorleapapi/model_generate_streaming_samples_vis_params.go +++ b/pkg/tensorleapapi/model_generate_streaming_samples_vis_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generate_synthetic_data_params.go b/pkg/tensorleapapi/model_generate_synthetic_data_params.go index 9a7efcc4..618f56aa 100644 --- a/pkg/tensorleapapi/model_generate_synthetic_data_params.go +++ b/pkg/tensorleapapi/model_generate_synthetic_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generated_label.go b/pkg/tensorleapapi/model_generated_label.go index 8be0e094..47a97809 100644 --- a/pkg/tensorleapapi/model_generated_label.go +++ b/pkg/tensorleapapi/model_generated_label.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generated_labels_response.go b/pkg/tensorleapapi/model_generated_labels_response.go index 51790abe..43a89356 100644 --- a/pkg/tensorleapapi/model_generated_labels_response.go +++ b/pkg/tensorleapapi/model_generated_labels_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generic_base_image.go b/pkg/tensorleapapi/model_generic_base_image.go index 454945e4..7fbfe295 100644 --- a/pkg/tensorleapapi/model_generic_base_image.go +++ b/pkg/tensorleapapi/model_generic_base_image.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generic_data_item.go b/pkg/tensorleapapi/model_generic_data_item.go index c93eaeb9..fbe25bb1 100644 --- a/pkg/tensorleapapi/model_generic_data_item.go +++ b/pkg/tensorleapapi/model_generic_data_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generic_data_query_params.go b/pkg/tensorleapapi/model_generic_data_query_params.go index fe384bc7..3b67c7d7 100644 --- a/pkg/tensorleapapi/model_generic_data_query_params.go +++ b/pkg/tensorleapapi/model_generic_data_query_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generic_data_response.go b/pkg/tensorleapapi/model_generic_data_response.go index 3914419e..a8845f13 100644 --- a/pkg/tensorleapapi/model_generic_data_response.go +++ b/pkg/tensorleapapi/model_generic_data_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_all_project_session_tests_request.go b/pkg/tensorleapapi/model_get_all_project_session_tests_request.go index 15c88d88..40ddb3b9 100644 --- a/pkg/tensorleapapi/model_get_all_project_session_tests_request.go +++ b/pkg/tensorleapapi/model_get_all_project_session_tests_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_api_key_by_code_request.go b/pkg/tensorleapapi/model_get_api_key_by_code_request.go index c443f0fc..cce55efe 100644 --- a/pkg/tensorleapapi/model_get_api_key_by_code_request.go +++ b/pkg/tensorleapapi/model_get_api_key_by_code_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_auth_provider_response.go b/pkg/tensorleapapi/model_get_auth_provider_response.go index 15342b51..9391955b 100644 --- a/pkg/tensorleapapi/model_get_auth_provider_response.go +++ b/pkg/tensorleapapi/model_get_auth_provider_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_auth_status_response.go b/pkg/tensorleapapi/model_get_auth_status_response.go index ec5600fb..d1d92ad1 100644 --- a/pkg/tensorleapapi/model_get_auth_status_response.go +++ b/pkg/tensorleapapi/model_get_auth_status_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_code_snapshot_params.go b/pkg/tensorleapapi/model_get_code_snapshot_params.go index b5981ac2..0f6937fa 100644 --- a/pkg/tensorleapapi/model_get_code_snapshot_params.go +++ b/pkg/tensorleapapi/model_get_code_snapshot_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_code_snapshot_response.go b/pkg/tensorleapapi/model_get_code_snapshot_response.go index b5d72609..dd2c97e1 100644 --- a/pkg/tensorleapapi/model_get_code_snapshot_response.go +++ b/pkg/tensorleapapi/model_get_code_snapshot_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_code_snapshot_upload_url_params.go b/pkg/tensorleapapi/model_get_code_snapshot_upload_url_params.go index 1886ed31..ace5ac7b 100644 --- a/pkg/tensorleapapi/model_get_code_snapshot_upload_url_params.go +++ b/pkg/tensorleapapi/model_get_code_snapshot_upload_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_collection_display_data_params.go b/pkg/tensorleapapi/model_get_collection_display_data_params.go index 3bc089c4..cb95199d 100644 --- a/pkg/tensorleapapi/model_get_collection_display_data_params.go +++ b/pkg/tensorleapapi/model_get_collection_display_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_collection_display_data_response.go b/pkg/tensorleapapi/model_get_collection_display_data_response.go index c37ed099..0d1cb4d1 100644 --- a/pkg/tensorleapapi/model_get_collection_display_data_response.go +++ b/pkg/tensorleapapi/model_get_collection_display_data_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_collection_sample_order_params.go b/pkg/tensorleapapi/model_get_collection_sample_order_params.go index bcc480e1..fccf181a 100644 --- a/pkg/tensorleapapi/model_get_collection_sample_order_params.go +++ b/pkg/tensorleapapi/model_get_collection_sample_order_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_collection_sample_order_response.go b/pkg/tensorleapapi/model_get_collection_sample_order_response.go index caf9b699..86e7e163 100644 --- a/pkg/tensorleapapi/model_get_collection_sample_order_response.go +++ b/pkg/tensorleapapi/model_get_collection_sample_order_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_collection_samples_metadata_params.go b/pkg/tensorleapapi/model_get_collection_samples_metadata_params.go index 55bc7256..b55ccedd 100644 --- a/pkg/tensorleapapi/model_get_collection_samples_metadata_params.go +++ b/pkg/tensorleapapi/model_get_collection_samples_metadata_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_collection_samples_metadata_response.go b/pkg/tensorleapapi/model_get_collection_samples_metadata_response.go index 3b897ae2..c37ed48c 100644 --- a/pkg/tensorleapapi/model_get_collection_samples_metadata_response.go +++ b/pkg/tensorleapapi/model_get_collection_samples_metadata_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_confusion_matrix_labels.go b/pkg/tensorleapapi/model_get_confusion_matrix_labels.go index 1c67223e..3ac5fa07 100644 --- a/pkg/tensorleapapi/model_get_confusion_matrix_labels.go +++ b/pkg/tensorleapapi/model_get_confusion_matrix_labels.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_confusion_matrix_result_combinations_params.go b/pkg/tensorleapapi/model_get_confusion_matrix_result_combinations_params.go index f16250ab..fe578842 100644 --- a/pkg/tensorleapapi/model_get_confusion_matrix_result_combinations_params.go +++ b/pkg/tensorleapapi/model_get_confusion_matrix_result_combinations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_current_project_version_params.go b/pkg/tensorleapapi/model_get_current_project_version_params.go index a1f3f236..16a6e982 100644 --- a/pkg/tensorleapapi/model_get_current_project_version_params.go +++ b/pkg/tensorleapapi/model_get_current_project_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_current_project_version_response.go b/pkg/tensorleapapi/model_get_current_project_version_response.go index b76e1ba9..ae336f7b 100644 --- a/pkg/tensorleapapi/model_get_current_project_version_response.go +++ b/pkg/tensorleapapi/model_get_current_project_version_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_dashboard_params.go b/pkg/tensorleapapi/model_get_dashboard_params.go index 2655ea3b..3222117f 100644 --- a/pkg/tensorleapapi/model_get_dashboard_params.go +++ b/pkg/tensorleapapi/model_get_dashboard_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_dashboard_response.go b/pkg/tensorleapapi/model_get_dashboard_response.go index fe04e66c..10269769 100644 --- a/pkg/tensorleapapi/model_get_dashboard_response.go +++ b/pkg/tensorleapapi/model_get_dashboard_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_dashlet_fields_params.go b/pkg/tensorleapapi/model_get_dashlet_fields_params.go index c0eae525..2e2af257 100644 --- a/pkg/tensorleapapi/model_get_dashlet_fields_params.go +++ b/pkg/tensorleapapi/model_get_dashlet_fields_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_dashlet_fields_response.go b/pkg/tensorleapapi/model_get_dashlet_fields_response.go index ba968473..e4bbc2f3 100644 --- a/pkg/tensorleapapi/model_get_dashlet_fields_response.go +++ b/pkg/tensorleapapi/model_get_dashlet_fields_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_dataset_balancing_params.go b/pkg/tensorleapapi/model_get_dataset_balancing_params.go index 27441281..a091403f 100644 --- a/pkg/tensorleapapi/model_get_dataset_balancing_params.go +++ b/pkg/tensorleapapi/model_get_dataset_balancing_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_download_signed_url_params.go b/pkg/tensorleapapi/model_get_download_signed_url_params.go index 4f7b4d71..96052765 100644 --- a/pkg/tensorleapapi/model_get_download_signed_url_params.go +++ b/pkg/tensorleapapi/model_get_download_signed_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_download_signed_url_response.go b/pkg/tensorleapapi/model_get_download_signed_url_response.go index 126ba01b..e238b986 100644 --- a/pkg/tensorleapapi/model_get_download_signed_url_response.go +++ b/pkg/tensorleapapi/model_get_download_signed_url_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_environment_info_response.go b/pkg/tensorleapapi/model_get_environment_info_response.go index fa40aa20..052da168 100644 --- a/pkg/tensorleapapi/model_get_environment_info_response.go +++ b/pkg/tensorleapapi/model_get_environment_info_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_exported_model_jobs_params.go b/pkg/tensorleapapi/model_get_exported_model_jobs_params.go index c75e262d..4a208e3c 100644 --- a/pkg/tensorleapapi/model_get_exported_model_jobs_params.go +++ b/pkg/tensorleapapi/model_get_exported_model_jobs_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_exported_model_jobs_response.go b/pkg/tensorleapapi/model_get_exported_model_jobs_response.go index 2f764486..0d140595 100644 --- a/pkg/tensorleapapi/model_get_exported_model_jobs_response.go +++ b/pkg/tensorleapapi/model_get_exported_model_jobs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_fields_values_request.go b/pkg/tensorleapapi/model_get_fields_values_request.go index 39592d7b..2c282b1c 100644 --- a/pkg/tensorleapapi/model_get_fields_values_request.go +++ b/pkg/tensorleapapi/model_get_fields_values_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_fields_values_response.go b/pkg/tensorleapapi/model_get_fields_values_response.go index 2d828eee..de4800db 100644 --- a/pkg/tensorleapapi/model_get_fields_values_response.go +++ b/pkg/tensorleapapi/model_get_fields_values_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_fields_values_response_results_inner.go b/pkg/tensorleapapi/model_get_fields_values_response_results_inner.go index c4c627e9..d5df20a7 100644 --- a/pkg/tensorleapapi/model_get_fields_values_response_results_inner.go +++ b/pkg/tensorleapapi/model_get_fields_values_response_results_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_generated_labels_params.go b/pkg/tensorleapapi/model_get_generated_labels_params.go index 80079eb9..d344e850 100644 --- a/pkg/tensorleapapi/model_get_generated_labels_params.go +++ b/pkg/tensorleapapi/model_get_generated_labels_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_generic_base_image_types_response.go b/pkg/tensorleapapi/model_get_generic_base_image_types_response.go index b54e4893..b32e76cf 100644 --- a/pkg/tensorleapapi/model_get_generic_base_image_types_response.go +++ b/pkg/tensorleapapi/model_get_generic_base_image_types_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_import_model_upload_url_params.go b/pkg/tensorleapapi/model_get_import_model_upload_url_params.go index ed6afb9c..302527ef 100644 --- a/pkg/tensorleapapi/model_get_import_model_upload_url_params.go +++ b/pkg/tensorleapapi/model_get_import_model_upload_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_insights_params.go b/pkg/tensorleapapi/model_get_insights_params.go index 41b29adb..97b163ee 100644 --- a/pkg/tensorleapapi/model_get_insights_params.go +++ b/pkg/tensorleapapi/model_get_insights_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_insights_response.go b/pkg/tensorleapapi/model_get_insights_response.go index 7b58ecf6..acaf04f0 100644 --- a/pkg/tensorleapapi/model_get_insights_response.go +++ b/pkg/tensorleapapi/model_get_insights_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_issue_file_upload_signed_url.go b/pkg/tensorleapapi/model_get_issue_file_upload_signed_url.go index 6e4f0b80..a0f7d2c6 100644 --- a/pkg/tensorleapapi/model_get_issue_file_upload_signed_url.go +++ b/pkg/tensorleapapi/model_get_issue_file_upload_signed_url.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_job_logs_params.go b/pkg/tensorleapapi/model_get_job_logs_params.go index 2ac109a6..8a023d72 100644 --- a/pkg/tensorleapapi/model_get_job_logs_params.go +++ b/pkg/tensorleapapi/model_get_job_logs_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_job_logs_response.go b/pkg/tensorleapapi/model_get_job_logs_response.go index 681eaab8..81ffe3cc 100644 --- a/pkg/tensorleapapi/model_get_job_logs_response.go +++ b/pkg/tensorleapapi/model_get_job_logs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_jobs_filter_params.go b/pkg/tensorleapapi/model_get_jobs_filter_params.go index bde8caea..57a164f7 100644 --- a/pkg/tensorleapapi/model_get_jobs_filter_params.go +++ b/pkg/tensorleapapi/model_get_jobs_filter_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_jobs_response.go b/pkg/tensorleapapi/model_get_jobs_response.go index 6471f90c..47ac3f28 100644 --- a/pkg/tensorleapapi/model_get_jobs_response.go +++ b/pkg/tensorleapapi/model_get_jobs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_latest_exported_project_params.go b/pkg/tensorleapapi/model_get_latest_exported_project_params.go index f0d46f3a..ea4570e7 100644 --- a/pkg/tensorleapapi/model_get_latest_exported_project_params.go +++ b/pkg/tensorleapapi/model_get_latest_exported_project_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_machine_types_response.go b/pkg/tensorleapapi/model_get_machine_types_response.go index 32b4afda..a28ef01c 100644 --- a/pkg/tensorleapapi/model_get_machine_types_response.go +++ b/pkg/tensorleapapi/model_get_machine_types_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_max_active_users_response.go b/pkg/tensorleapapi/model_get_max_active_users_response.go index c2f60c44..e254ad7b 100644 --- a/pkg/tensorleapapi/model_get_max_active_users_response.go +++ b/pkg/tensorleapapi/model_get_max_active_users_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_notifications_by_filter_params.go b/pkg/tensorleapapi/model_get_notifications_by_filter_params.go index 16c3c608..87dc044a 100644 --- a/pkg/tensorleapapi/model_get_notifications_by_filter_params.go +++ b/pkg/tensorleapapi/model_get_notifications_by_filter_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_notifications_by_filter_response.go b/pkg/tensorleapapi/model_get_notifications_by_filter_response.go index 58b130b9..933421ba 100644 --- a/pkg/tensorleapapi/model_get_notifications_by_filter_response.go +++ b/pkg/tensorleapapi/model_get_notifications_by_filter_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_notifications_response.go b/pkg/tensorleapapi/model_get_notifications_response.go index 789c6049..d8f16fcd 100644 --- a/pkg/tensorleapapi/model_get_notifications_response.go +++ b/pkg/tensorleapapi/model_get_notifications_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_dashboards_params.go b/pkg/tensorleapapi/model_get_project_dashboards_params.go index eb45a6e0..c6d4b3cb 100644 --- a/pkg/tensorleapapi/model_get_project_dashboards_params.go +++ b/pkg/tensorleapapi/model_get_project_dashboards_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_dashboards_response.go b/pkg/tensorleapapi/model_get_project_dashboards_response.go index 570b15ed..4b25e176 100644 --- a/pkg/tensorleapapi/model_get_project_dashboards_response.go +++ b/pkg/tensorleapapi/model_get_project_dashboards_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_issues_params.go b/pkg/tensorleapapi/model_get_project_issues_params.go index 06e9bcd6..777b8d98 100644 --- a/pkg/tensorleapapi/model_get_project_issues_params.go +++ b/pkg/tensorleapapi/model_get_project_issues_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_issues_response.go b/pkg/tensorleapapi/model_get_project_issues_response.go index 4ecbe025..9d0cf055 100644 --- a/pkg/tensorleapapi/model_get_project_issues_response.go +++ b/pkg/tensorleapapi/model_get_project_issues_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_slim_versions_response.go b/pkg/tensorleapapi/model_get_project_slim_versions_response.go index d17234bb..2982ec59 100644 --- a/pkg/tensorleapapi/model_get_project_slim_versions_response.go +++ b/pkg/tensorleapapi/model_get_project_slim_versions_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_versions_params.go b/pkg/tensorleapapi/model_get_project_versions_params.go index 11e8afde..30fbdb68 100644 --- a/pkg/tensorleapapi/model_get_project_versions_params.go +++ b/pkg/tensorleapapi/model_get_project_versions_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_projects_response.go b/pkg/tensorleapapi/model_get_projects_response.go index 52bc008f..7f2ff5ef 100644 --- a/pkg/tensorleapapi/model_get_projects_response.go +++ b/pkg/tensorleapapi/model_get_projects_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_collections_params.go b/pkg/tensorleapapi/model_get_sample_collections_params.go index 8b62c690..ff0d2f87 100644 --- a/pkg/tensorleapapi/model_get_sample_collections_params.go +++ b/pkg/tensorleapapi/model_get_sample_collections_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_collections_response.go b/pkg/tensorleapapi/model_get_sample_collections_response.go index 27e30d2a..5fbc6691 100644 --- a/pkg/tensorleapapi/model_get_sample_collections_response.go +++ b/pkg/tensorleapapi/model_get_sample_collections_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_enrichment_params.go b/pkg/tensorleapapi/model_get_sample_enrichment_params.go index 99976e21..a5f073e5 100644 --- a/pkg/tensorleapapi/model_get_sample_enrichment_params.go +++ b/pkg/tensorleapapi/model_get_sample_enrichment_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_enrichment_response.go b/pkg/tensorleapapi/model_get_sample_enrichment_response.go index 0f9456fa..9b0e0534 100644 --- a/pkg/tensorleapapi/model_get_sample_enrichment_response.go +++ b/pkg/tensorleapapi/model_get_sample_enrichment_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_enrichment_response_samples_inner.go b/pkg/tensorleapapi/model_get_sample_enrichment_response_samples_inner.go index cf76f5f0..206ecfd5 100644 --- a/pkg/tensorleapapi/model_get_sample_enrichment_response_samples_inner.go +++ b/pkg/tensorleapapi/model_get_sample_enrichment_response_samples_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_visualizations_paths_params.go b/pkg/tensorleapapi/model_get_sample_visualizations_paths_params.go index d8df9406..504401cf 100644 --- a/pkg/tensorleapapi/model_get_sample_visualizations_paths_params.go +++ b/pkg/tensorleapapi/model_get_sample_visualizations_paths_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_visualizations_paths_response.go b/pkg/tensorleapapi/model_get_sample_visualizations_paths_response.go index 916d3613..0fddd6dd 100644 --- a/pkg/tensorleapapi/model_get_sample_visualizations_paths_response.go +++ b/pkg/tensorleapapi/model_get_sample_visualizations_paths_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_scatter_sample_visualizations_params.go b/pkg/tensorleapapi/model_get_scatter_sample_visualizations_params.go index bd3daf53..d3a31e5a 100644 --- a/pkg/tensorleapapi/model_get_scatter_sample_visualizations_params.go +++ b/pkg/tensorleapapi/model_get_scatter_sample_visualizations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,8 +20,9 @@ var _ MappedNullable = &GetScatterSampleVisualizationsParams{} // GetScatterSampleVisualizationsParams struct for GetScatterSampleVisualizationsParams type GetScatterSampleVisualizationsParams struct { - VersionId string `json:"versionId"` - ProjectId string `json:"projectId"` + VersionId string `json:"versionId"` + ProjectId string `json:"projectId"` + SampleIds []string `json:"sampleIds"` AdditionalProperties map[string]interface{} } @@ -31,10 +32,11 @@ type _GetScatterSampleVisualizationsParams GetScatterSampleVisualizationsParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetScatterSampleVisualizationsParams(versionId string, projectId string) *GetScatterSampleVisualizationsParams { +func NewGetScatterSampleVisualizationsParams(versionId string, projectId string, sampleIds []string) *GetScatterSampleVisualizationsParams { this := GetScatterSampleVisualizationsParams{} this.VersionId = versionId this.ProjectId = projectId + this.SampleIds = sampleIds return &this } @@ -94,6 +96,30 @@ func (o *GetScatterSampleVisualizationsParams) SetProjectId(v string) { o.ProjectId = v } +// GetSampleIds returns the SampleIds field value +func (o *GetScatterSampleVisualizationsParams) GetSampleIds() []string { + if o == nil { + var ret []string + return ret + } + + return o.SampleIds +} + +// GetSampleIdsOk returns a tuple with the SampleIds field value +// and a boolean to check if the value has been set. +func (o *GetScatterSampleVisualizationsParams) GetSampleIdsOk() ([]string, bool) { + if o == nil { + return nil, false + } + return o.SampleIds, true +} + +// SetSampleIds sets field value +func (o *GetScatterSampleVisualizationsParams) SetSampleIds(v []string) { + o.SampleIds = v +} + func (o GetScatterSampleVisualizationsParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -106,6 +132,7 @@ func (o GetScatterSampleVisualizationsParams) ToMap() (map[string]interface{}, e toSerialize := map[string]interface{}{} toSerialize["versionId"] = o.VersionId toSerialize["projectId"] = o.ProjectId + toSerialize["sampleIds"] = o.SampleIds for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -121,6 +148,7 @@ func (o *GetScatterSampleVisualizationsParams) UnmarshalJSON(data []byte) (err e requiredProperties := []string{ "versionId", "projectId", + "sampleIds", } allProperties := make(map[string]interface{}) @@ -152,6 +180,7 @@ func (o *GetScatterSampleVisualizationsParams) UnmarshalJSON(data []byte) (err e if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") + delete(additionalProperties, "sampleIds") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_get_scatter_sample_visualizations_response.go b/pkg/tensorleapapi/model_get_scatter_sample_visualizations_response.go index 6cd0525b..9a83472d 100644 --- a/pkg/tensorleapapi/model_get_scatter_sample_visualizations_response.go +++ b/pkg/tensorleapapi/model_get_scatter_sample_visualizations_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_secret_manager_list_response.go b/pkg/tensorleapapi/model_get_secret_manager_list_response.go index 98ff4186..e9a945df 100644 --- a/pkg/tensorleapapi/model_get_secret_manager_list_response.go +++ b/pkg/tensorleapapi/model_get_secret_manager_list_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_session_test_results_request.go b/pkg/tensorleapapi/model_get_session_test_results_request.go index a00fc62a..72550992 100644 --- a/pkg/tensorleapapi/model_get_session_test_results_request.go +++ b/pkg/tensorleapapi/model_get_session_test_results_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_signed_url_params.go b/pkg/tensorleapapi/model_get_signed_url_params.go index fd892002..3496a5f1 100644 --- a/pkg/tensorleapapi/model_get_signed_url_params.go +++ b/pkg/tensorleapapi/model_get_signed_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_single_issue_params.go b/pkg/tensorleapapi/model_get_single_issue_params.go index be026fa7..5de15c97 100644 --- a/pkg/tensorleapapi/model_get_single_issue_params.go +++ b/pkg/tensorleapapi/model_get_single_issue_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_single_session_test_request.go b/pkg/tensorleapapi/model_get_single_session_test_request.go index feac52cd..d43fe9f6 100644 --- a/pkg/tensorleapapi/model_get_single_session_test_request.go +++ b/pkg/tensorleapapi/model_get_single_session_test_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_active_versions_params.go b/pkg/tensorleapapi/model_get_slim_active_versions_params.go index 37ddbc66..c669b4d2 100644 --- a/pkg/tensorleapapi/model_get_slim_active_versions_params.go +++ b/pkg/tensorleapapi/model_get_slim_active_versions_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_active_versions_response.go b/pkg/tensorleapapi/model_get_slim_active_versions_response.go index e506e5a0..397eb62c 100644 --- a/pkg/tensorleapapi/model_get_slim_active_versions_response.go +++ b/pkg/tensorleapapi/model_get_slim_active_versions_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_experiment_versions_params.go b/pkg/tensorleapapi/model_get_slim_experiment_versions_params.go index 2231b2dc..e33288be 100644 --- a/pkg/tensorleapapi/model_get_slim_experiment_versions_params.go +++ b/pkg/tensorleapapi/model_get_slim_experiment_versions_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_experiment_versions_response.go b/pkg/tensorleapapi/model_get_slim_experiment_versions_response.go index 038e2202..b62c2774 100644 --- a/pkg/tensorleapapi/model_get_slim_experiment_versions_response.go +++ b/pkg/tensorleapapi/model_get_slim_experiment_versions_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_jobs_response.go b/pkg/tensorleapapi/model_get_slim_jobs_response.go index a6578bcd..ee5ab6a3 100644 --- a/pkg/tensorleapapi/model_get_slim_jobs_response.go +++ b/pkg/tensorleapapi/model_get_slim_jobs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_visualization_params.go b/pkg/tensorleapapi/model_get_slim_visualization_params.go index 2a696aad..9f82ed04 100644 --- a/pkg/tensorleapapi/model_get_slim_visualization_params.go +++ b/pkg/tensorleapapi/model_get_slim_visualization_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_visualization_response.go b/pkg/tensorleapapi/model_get_slim_visualization_response.go index 4998008c..5183d358 100644 --- a/pkg/tensorleapapi/model_get_slim_visualization_response.go +++ b/pkg/tensorleapapi/model_get_slim_visualization_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_state_params.go b/pkg/tensorleapapi/model_get_state_params.go index e4b9b937..e352ac1c 100644 --- a/pkg/tensorleapapi/model_get_state_params.go +++ b/pkg/tensorleapapi/model_get_state_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_state_response.go b/pkg/tensorleapapi/model_get_state_response.go index 9cc82bcd..20279d02 100644 --- a/pkg/tensorleapapi/model_get_state_response.go +++ b/pkg/tensorleapapi/model_get_state_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_statistics_params.go b/pkg/tensorleapapi/model_get_statistics_params.go index 5d381c1d..091d3d1c 100644 --- a/pkg/tensorleapapi/model_get_statistics_params.go +++ b/pkg/tensorleapapi/model_get_statistics_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_statistics_response.go b/pkg/tensorleapapi/model_get_statistics_response.go index 14f1b1b1..9a7cc2a0 100644 --- a/pkg/tensorleapapi/model_get_statistics_response.go +++ b/pkg/tensorleapapi/model_get_statistics_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_synthetic_data_params.go b/pkg/tensorleapapi/model_get_synthetic_data_params.go index 12f3d9d0..3055fd94 100644 --- a/pkg/tensorleapapi/model_get_synthetic_data_params.go +++ b/pkg/tensorleapapi/model_get_synthetic_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_team_users_response.go b/pkg/tensorleapapi/model_get_team_users_response.go index 44eae092..cf4712e7 100644 --- a/pkg/tensorleapapi/model_get_team_users_response.go +++ b/pkg/tensorleapapi/model_get_team_users_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_teams_response.go b/pkg/tensorleapapi/model_get_teams_response.go index b04d4c8e..d1b248b0 100644 --- a/pkg/tensorleapapi/model_get_teams_response.go +++ b/pkg/tensorleapapi/model_get_teams_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_upload_model_signed_url_request.go b/pkg/tensorleapapi/model_get_upload_model_signed_url_request.go index 4cc2ce7f..84f5c9af 100644 --- a/pkg/tensorleapapi/model_get_upload_model_signed_url_request.go +++ b/pkg/tensorleapapi/model_get_upload_model_signed_url_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_upload_signed_url_params.go b/pkg/tensorleapapi/model_get_upload_signed_url_params.go index acf7d6a2..e7ce5d12 100644 --- a/pkg/tensorleapapi/model_get_upload_signed_url_params.go +++ b/pkg/tensorleapapi/model_get_upload_signed_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_version_epochs_response.go b/pkg/tensorleapapi/model_get_version_epochs_response.go index 262db5aa..714a0319 100644 --- a/pkg/tensorleapapi/model_get_version_epochs_response.go +++ b/pkg/tensorleapapi/model_get_version_epochs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_version_sample_order_params.go b/pkg/tensorleapapi/model_get_version_sample_order_params.go index c699c349..ceabd697 100644 --- a/pkg/tensorleapapi/model_get_version_sample_order_params.go +++ b/pkg/tensorleapapi/model_get_version_sample_order_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_version_sample_order_response.go b/pkg/tensorleapapi/model_get_version_sample_order_response.go index af89a5ea..8f241a73 100644 --- a/pkg/tensorleapapi/model_get_version_sample_order_response.go +++ b/pkg/tensorleapapi/model_get_version_sample_order_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_version_samples_metadata_params.go b/pkg/tensorleapapi/model_get_version_samples_metadata_params.go index 4336fad7..cc031c14 100644 --- a/pkg/tensorleapapi/model_get_version_samples_metadata_params.go +++ b/pkg/tensorleapapi/model_get_version_samples_metadata_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_version_samples_metadata_response.go b/pkg/tensorleapapi/model_get_version_samples_metadata_response.go index 328203d1..85aa8cf3 100644 --- a/pkg/tensorleapapi/model_get_version_samples_metadata_response.go +++ b/pkg/tensorleapapi/model_get_version_samples_metadata_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_versions_epochs_request.go b/pkg/tensorleapapi/model_get_versions_epochs_request.go index 81d31318..ff4d1c2f 100644 --- a/pkg/tensorleapapi/model_get_versions_epochs_request.go +++ b/pkg/tensorleapapi/model_get_versions_epochs_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_versions_visualizations_params.go b/pkg/tensorleapapi/model_get_versions_visualizations_params.go index 4db6cfd5..ca62ed34 100644 --- a/pkg/tensorleapapi/model_get_versions_visualizations_params.go +++ b/pkg/tensorleapapi/model_get_versions_visualizations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_versions_visualizations_response.go b/pkg/tensorleapapi/model_get_versions_visualizations_response.go index 3d621ebb..f0cb6976 100644 --- a/pkg/tensorleapapi/model_get_versions_visualizations_response.go +++ b/pkg/tensorleapapi/model_get_versions_visualizations_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_grads_analysis.go b/pkg/tensorleapapi/model_grads_analysis.go index 5287d585..fd7a8a0c 100644 --- a/pkg/tensorleapapi/model_grads_analysis.go +++ b/pkg/tensorleapapi/model_grads_analysis.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_grads_item.go b/pkg/tensorleapapi/model_grads_item.go index 650b8b3d..92ef0e7c 100644 --- a/pkg/tensorleapapi/model_grads_item.go +++ b/pkg/tensorleapapi/model_grads_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_graph_data.go b/pkg/tensorleapapi/model_graph_data.go index 44643af6..fba4520f 100644 --- a/pkg/tensorleapapi/model_graph_data.go +++ b/pkg/tensorleapapi/model_graph_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_graph_validator_data.go b/pkg/tensorleapapi/model_graph_validator_data.go index 21f1698d..d36cb256 100644 --- a/pkg/tensorleapapi/model_graph_validator_data.go +++ b/pkg/tensorleapapi/model_graph_validator_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_graph_viz.go b/pkg/tensorleapapi/model_graph_viz.go index 2edf5d67..0e756f76 100644 --- a/pkg/tensorleapapi/model_graph_viz.go +++ b/pkg/tensorleapapi/model_graph_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_health_check_response.go b/pkg/tensorleapapi/model_health_check_response.go index 014790db..70638603 100644 --- a/pkg/tensorleapapi/model_health_check_response.go +++ b/pkg/tensorleapapi/model_health_check_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_health_status.go b/pkg/tensorleapapi/model_health_status.go index 961c53b4..a8293b2e 100644 --- a/pkg/tensorleapapi/model_health_status.go +++ b/pkg/tensorleapapi/model_health_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_heatmap.go b/pkg/tensorleapapi/model_heatmap.go index 316d9241..f5364c43 100644 --- a/pkg/tensorleapapi/model_heatmap.go +++ b/pkg/tensorleapapi/model_heatmap.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_heatmap_charts_params.go b/pkg/tensorleapapi/model_heatmap_charts_params.go index 7ad25d58..859c36ea 100644 --- a/pkg/tensorleapapi/model_heatmap_charts_params.go +++ b/pkg/tensorleapapi/model_heatmap_charts_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_heatmap_type.go b/pkg/tensorleapapi/model_heatmap_type.go index 6059225b..e52033e5 100644 --- a/pkg/tensorleapapi/model_heatmap_type.go +++ b/pkg/tensorleapapi/model_heatmap_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_horizontal_bar_data.go b/pkg/tensorleapapi/model_horizontal_bar_data.go index 27ecac19..c9d6ec87 100644 --- a/pkg/tensorleapapi/model_horizontal_bar_data.go +++ b/pkg/tensorleapapi/model_horizontal_bar_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_horizontal_bar_viz.go b/pkg/tensorleapapi/model_horizontal_bar_viz.go index 75c1f7dd..08f5453d 100644 --- a/pkg/tensorleapapi/model_horizontal_bar_viz.go +++ b/pkg/tensorleapapi/model_horizontal_bar_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_http_methods.go b/pkg/tensorleapapi/model_http_methods.go index c049789f..524287a8 100644 --- a/pkg/tensorleapapi/model_http_methods.go +++ b/pkg/tensorleapapi/model_http_methods.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_hub_publish_policy.go b/pkg/tensorleapapi/model_hub_publish_policy.go index 0c0a83af..3f478fc4 100644 --- a/pkg/tensorleapapi/model_hub_publish_policy.go +++ b/pkg/tensorleapapi/model_hub_publish_policy.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_image_data.go b/pkg/tensorleapapi/model_image_data.go index daf1f274..f9cde7ec 100644 --- a/pkg/tensorleapapi/model_image_data.go +++ b/pkg/tensorleapapi/model_image_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_image_heatmap_data.go b/pkg/tensorleapapi/model_image_heatmap_data.go index d12a9b59..3331f3f7 100644 --- a/pkg/tensorleapapi/model_image_heatmap_data.go +++ b/pkg/tensorleapapi/model_image_heatmap_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_image_viz.go b/pkg/tensorleapapi/model_image_viz.go index 9dd53c26..8c529044 100644 --- a/pkg/tensorleapapi/model_image_viz.go +++ b/pkg/tensorleapapi/model_image_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_external_model_params.go b/pkg/tensorleapapi/model_import_external_model_params.go index 900e84cb..97beaa81 100644 --- a/pkg/tensorleapapi/model_import_external_model_params.go +++ b/pkg/tensorleapapi/model_import_external_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_model_info.go b/pkg/tensorleapapi/model_import_model_info.go index 1b9457e5..b38be762 100644 --- a/pkg/tensorleapapi/model_import_model_info.go +++ b/pkg/tensorleapapi/model_import_model_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_model_type.go b/pkg/tensorleapapi/model_import_model_type.go index 391a83a3..8f8489c3 100644 --- a/pkg/tensorleapapi/model_import_model_type.go +++ b/pkg/tensorleapapi/model_import_model_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_new_model_params.go b/pkg/tensorleapapi/model_import_new_model_params.go index 9859428a..a00d6be2 100644 --- a/pkg/tensorleapapi/model_import_new_model_params.go +++ b/pkg/tensorleapapi/model_import_new_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_project_params.go b/pkg/tensorleapapi/model_import_project_params.go index fbda9951..4ceceda0 100644 --- a/pkg/tensorleapapi/model_import_project_params.go +++ b/pkg/tensorleapapi/model_import_project_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_project_request.go b/pkg/tensorleapapi/model_import_project_request.go index 89fca465..cab229cd 100644 --- a/pkg/tensorleapapi/model_import_project_request.go +++ b/pkg/tensorleapapi/model_import_project_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_project_response.go b/pkg/tensorleapapi/model_import_project_response.go index 9641062a..2291d12a 100644 --- a/pkg/tensorleapapi/model_import_project_response.go +++ b/pkg/tensorleapapi/model_import_project_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_inference_artifact_resources.go b/pkg/tensorleapapi/model_inference_artifact_resources.go index 691077c3..bcc6ea38 100644 --- a/pkg/tensorleapapi/model_inference_artifact_resources.go +++ b/pkg/tensorleapapi/model_inference_artifact_resources.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_init_experiment_request.go b/pkg/tensorleapapi/model_init_experiment_request.go index c5d45c58..710acfea 100644 --- a/pkg/tensorleapapi/model_init_experiment_request.go +++ b/pkg/tensorleapapi/model_init_experiment_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_init_experiment_response.go b/pkg/tensorleapapi/model_init_experiment_response.go index 30fb8ff5..4845b691 100644 --- a/pkg/tensorleapapi/model_init_experiment_response.go +++ b/pkg/tensorleapapi/model_init_experiment_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight.go b/pkg/tensorleapapi/model_insight.go index d14b0430..c8ecd915 100644 --- a/pkg/tensorleapapi/model_insight.go +++ b/pkg/tensorleapapi/model_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -26,6 +26,7 @@ type Insight struct { InsightType InsightType `json:"insightType"` Index float64 `json:"index"` Status InsightStatus `json:"status"` + Description *string `json:"description,omitempty"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` AdditionalProperties map[string]interface{} @@ -184,6 +185,38 @@ func (o *Insight) SetStatus(v InsightStatus) { o.Status = v } +// GetDescription returns the Description field value if set, zero value otherwise. +func (o *Insight) GetDescription() string { + if o == nil || IsNil(o.Description) { + var ret string + return ret + } + return *o.Description +} + +// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *Insight) GetDescriptionOk() (*string, bool) { + if o == nil || IsNil(o.Description) { + return nil, false + } + return o.Description, true +} + +// HasDescription returns a boolean if a field has been set. +func (o *Insight) HasDescription() bool { + if o != nil && !IsNil(o.Description) { + return true + } + + return false +} + +// SetDescription gets a reference to the given string and assigns it to the Description field. +func (o *Insight) SetDescription(v string) { + o.Description = &v +} + // GetCreatedAt returns the CreatedAt field value func (o *Insight) GetCreatedAt() time.Time { if o == nil { @@ -249,6 +282,9 @@ func (o Insight) ToMap() (map[string]interface{}, error) { toSerialize["insightType"] = o.InsightType toSerialize["index"] = o.Index toSerialize["status"] = o.Status + if !IsNil(o.Description) { + toSerialize["description"] = o.Description + } toSerialize["createdAt"] = o.CreatedAt toSerialize["updatedAt"] = o.UpdatedAt @@ -304,6 +340,7 @@ func (o *Insight) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "insightType") delete(additionalProperties, "index") delete(additionalProperties, "status") + delete(additionalProperties, "description") delete(additionalProperties, "createdAt") delete(additionalProperties, "updatedAt") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_insight_automatic_test_.go b/pkg/tensorleapapi/model_insight_automatic_test_.go index 6e2fd09f..d0f0062c 100644 --- a/pkg/tensorleapapi/model_insight_automatic_test_.go +++ b/pkg/tensorleapapi/model_insight_automatic_test_.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_filter_display_data.go b/pkg/tensorleapapi/model_insight_filter_display_data.go index 7878c44c..af4abbfd 100644 --- a/pkg/tensorleapapi/model_insight_filter_display_data.go +++ b/pkg/tensorleapapi/model_insight_filter_display_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_filter_display_data_insights_inner.go b/pkg/tensorleapapi/model_insight_filter_display_data_insights_inner.go index 9a26ba59..6a93d914 100644 --- a/pkg/tensorleapapi/model_insight_filter_display_data_insights_inner.go +++ b/pkg/tensorleapapi/model_insight_filter_display_data_insights_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_metric_info.go b/pkg/tensorleapapi/model_insight_metric_info.go index 801dd733..d80180a6 100644 --- a/pkg/tensorleapapi/model_insight_metric_info.go +++ b/pkg/tensorleapapi/model_insight_metric_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_status.go b/pkg/tensorleapapi/model_insight_status.go index 3b32e3bf..3519210f 100644 --- a/pkg/tensorleapapi/model_insight_status.go +++ b/pkg/tensorleapapi/model_insight_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_type.go b/pkg/tensorleapapi/model_insight_type.go index 67fdea1b..75128c35 100644 --- a/pkg/tensorleapapi/model_insight_type.go +++ b/pkg/tensorleapapi/model_insight_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insights_job_params.go b/pkg/tensorleapapi/model_insights_job_params.go index 838b7d80..b8cdc5c5 100644 --- a/pkg/tensorleapapi/model_insights_job_params.go +++ b/pkg/tensorleapapi/model_insights_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue.go b/pkg/tensorleapapi/model_issue.go index 51541dc6..9c24489e 100644 --- a/pkg/tensorleapapi/model_issue.go +++ b/pkg/tensorleapapi/model_issue.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_action.go b/pkg/tensorleapapi/model_issue_action.go index 87d973d0..1cb63e10 100644 --- a/pkg/tensorleapapi/model_issue_action.go +++ b/pkg/tensorleapapi/model_issue_action.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_action_type.go b/pkg/tensorleapapi/model_issue_action_type.go index edd209e0..759343c2 100644 --- a/pkg/tensorleapapi/model_issue_action_type.go +++ b/pkg/tensorleapapi/model_issue_action_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_activity.go b/pkg/tensorleapapi/model_issue_activity.go index af4cce62..e08a70e7 100644 --- a/pkg/tensorleapapi/model_issue_activity.go +++ b/pkg/tensorleapapi/model_issue_activity.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_file_upload_signed_url.go b/pkg/tensorleapapi/model_issue_file_upload_signed_url.go index a8c6c80e..741ca202 100644 --- a/pkg/tensorleapapi/model_issue_file_upload_signed_url.go +++ b/pkg/tensorleapapi/model_issue_file_upload_signed_url.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_status.go b/pkg/tensorleapapi/model_issue_status.go index 33110717..a2066921 100644 --- a/pkg/tensorleapapi/model_issue_status.go +++ b/pkg/tensorleapapi/model_issue_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job.go b/pkg/tensorleapapi/model_job.go index 9a84051f..029896c5 100644 --- a/pkg/tensorleapapi/model_job.go +++ b/pkg/tensorleapapi/model_job.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_event.go b/pkg/tensorleapapi/model_job_event.go index 1834cb4d..e3397808 100644 --- a/pkg/tensorleapapi/model_job_event.go +++ b/pkg/tensorleapapi/model_job_event.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_event_progress.go b/pkg/tensorleapapi/model_job_event_progress.go index 32c46568..2c500702 100644 --- a/pkg/tensorleapapi/model_job_event_progress.go +++ b/pkg/tensorleapapi/model_job_event_progress.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_message_params.go b/pkg/tensorleapapi/model_job_message_params.go index 3f49d621..d48e44f9 100644 --- a/pkg/tensorleapapi/model_job_message_params.go +++ b/pkg/tensorleapapi/model_job_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_analyze_context.go b/pkg/tensorleapapi/model_job_notification_analyze_context.go index 2b8b01da..0e3ff8df 100644 --- a/pkg/tensorleapapi/model_job_notification_analyze_context.go +++ b/pkg/tensorleapapi/model_job_notification_analyze_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_base_context.go b/pkg/tensorleapapi/model_job_notification_base_context.go index 85d71047..11e8a0d8 100644 --- a/pkg/tensorleapapi/model_job_notification_base_context.go +++ b/pkg/tensorleapapi/model_job_notification_base_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_context.go b/pkg/tensorleapapi/model_job_notification_context.go index 5659a62f..9a4ff66e 100644 --- a/pkg/tensorleapapi/model_job_notification_context.go +++ b/pkg/tensorleapapi/model_job_notification_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_leep_script_context.go b/pkg/tensorleapapi/model_job_notification_leep_script_context.go index ea0cfab7..d303e083 100644 --- a/pkg/tensorleapapi/model_job_notification_leep_script_context.go +++ b/pkg/tensorleapapi/model_job_notification_leep_script_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_model_context.go b/pkg/tensorleapapi/model_job_notification_model_context.go index b09cbfc6..cf427669 100644 --- a/pkg/tensorleapapi/model_job_notification_model_context.go +++ b/pkg/tensorleapapi/model_job_notification_model_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_project_context.go b/pkg/tensorleapapi/model_job_notification_project_context.go index 1e910cce..e0b4af51 100644 --- a/pkg/tensorleapapi/model_job_notification_project_context.go +++ b/pkg/tensorleapapi/model_job_notification_project_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_sample_context.go b/pkg/tensorleapapi/model_job_notification_sample_context.go index 9182ebd6..f3678385 100644 --- a/pkg/tensorleapapi/model_job_notification_sample_context.go +++ b/pkg/tensorleapapi/model_job_notification_sample_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_params.go b/pkg/tensorleapapi/model_job_params.go index 9351ad2a..ca7d8ee1 100644 --- a/pkg/tensorleapapi/model_job_params.go +++ b/pkg/tensorleapapi/model_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_status.go b/pkg/tensorleapapi/model_job_status.go index a56aefa1..3b941835 100644 --- a/pkg/tensorleapapi/model_job_status.go +++ b/pkg/tensorleapapi/model_job_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_sub_type.go b/pkg/tensorleapapi/model_job_sub_type.go index 160b3cfe..8ab017cc 100644 --- a/pkg/tensorleapapi/model_job_sub_type.go +++ b/pkg/tensorleapapi/model_job_sub_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_trigger.go b/pkg/tensorleapapi/model_job_trigger.go index d5ad3128..80c8680f 100644 --- a/pkg/tensorleapapi/model_job_trigger.go +++ b/pkg/tensorleapapi/model_job_trigger.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_type.go b/pkg/tensorleapapi/model_job_type.go index 6dc52aaf..0a30474f 100644 --- a/pkg/tensorleapapi/model_job_type.go +++ b/pkg/tensorleapapi/model_job_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_type_enum.go b/pkg/tensorleapapi/model_job_type_enum.go index 2df1ecbb..59357ac9 100644 --- a/pkg/tensorleapapi/model_job_type_enum.go +++ b/pkg/tensorleapapi/model_job_type_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_labeling_algorithm.go b/pkg/tensorleapapi/model_labeling_algorithm.go index 15955db9..84022986 100644 --- a/pkg/tensorleapapi/model_labeling_algorithm.go +++ b/pkg/tensorleapapi/model_labeling_algorithm.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_labeling_job_params.go b/pkg/tensorleapapi/model_labeling_job_params.go index 7ae94c34..9e88eac1 100644 --- a/pkg/tensorleapapi/model_labeling_job_params.go +++ b/pkg/tensorleapapi/model_labeling_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_latest_exported_project.go b/pkg/tensorleapapi/model_latest_exported_project.go index 01379fe9..ad67606d 100644 --- a/pkg/tensorleapapi/model_latest_exported_project.go +++ b/pkg/tensorleapapi/model_latest_exported_project.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_latest_exported_project_item.go b/pkg/tensorleapapi/model_latest_exported_project_item.go index f6e54e52..03f3de25 100644 --- a/pkg/tensorleapapi/model_latest_exported_project_item.go +++ b/pkg/tensorleapapi/model_latest_exported_project_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_layout.go b/pkg/tensorleapapi/model_layout.go index 4ee229ac..8db46b42 100644 --- a/pkg/tensorleapapi/model_layout.go +++ b/pkg/tensorleapapi/model_layout.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_leap_data_type.go b/pkg/tensorleapapi/model_leap_data_type.go index 6d139796..8875a50b 100644 --- a/pkg/tensorleapapi/model_leap_data_type.go +++ b/pkg/tensorleapapi/model_leap_data_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_license_metadata.go b/pkg/tensorleapapi/model_license_metadata.go index 28508ecc..8fff65a1 100644 --- a/pkg/tensorleapapi/model_license_metadata.go +++ b/pkg/tensorleapapi/model_license_metadata.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_license_type.go b/pkg/tensorleapapi/model_license_type.go index 7ae25793..c27a45be 100644 --- a/pkg/tensorleapapi/model_license_type.go +++ b/pkg/tensorleapapi/model_license_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_linked_project.go b/pkg/tensorleapapi/model_linked_project.go index 0f4ac61d..013577b0 100644 --- a/pkg/tensorleapapi/model_linked_project.go +++ b/pkg/tensorleapapi/model_linked_project.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_load_model_params.go b/pkg/tensorleapapi/model_load_model_params.go index bbcb0dad..25b4855f 100644 --- a/pkg/tensorleapapi/model_load_model_params.go +++ b/pkg/tensorleapapi/model_load_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_load_model_response.go b/pkg/tensorleapapi/model_load_model_response.go index 05f8403f..026dec17 100644 --- a/pkg/tensorleapapi/model_load_model_response.go +++ b/pkg/tensorleapapi/model_load_model_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_load_version_params.go b/pkg/tensorleapapi/model_load_version_params.go index 59ebc550..74b163ea 100644 --- a/pkg/tensorleapapi/model_load_version_params.go +++ b/pkg/tensorleapapi/model_load_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_load_version_response.go b/pkg/tensorleapapi/model_load_version_response.go index b5e5ac13..255f404b 100644 --- a/pkg/tensorleapapi/model_load_version_response.go +++ b/pkg/tensorleapapi/model_load_version_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_local_login_params.go b/pkg/tensorleapapi/model_local_login_params.go index 0bc1c444..4febdf31 100644 --- a/pkg/tensorleapapi/model_local_login_params.go +++ b/pkg/tensorleapapi/model_local_login_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_local_login_response.go b/pkg/tensorleapapi/model_local_login_response.go index 3e0c12b6..a9e9e73c 100644 --- a/pkg/tensorleapapi/model_local_login_response.go +++ b/pkg/tensorleapapi/model_local_login_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_log_external_epoch_data_request.go b/pkg/tensorleapapi/model_log_external_epoch_data_request.go index 1895267b..22c39f8f 100644 --- a/pkg/tensorleapapi/model_log_external_epoch_data_request.go +++ b/pkg/tensorleapapi/model_log_external_epoch_data_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_login_params.go b/pkg/tensorleapapi/model_login_params.go index 495e7aa0..c3cf22c3 100644 --- a/pkg/tensorleapapi/model_login_params.go +++ b/pkg/tensorleapapi/model_login_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_loss_message_params.go b/pkg/tensorleapapi/model_loss_message_params.go index 16e8c4f1..fdbcb70b 100644 --- a/pkg/tensorleapapi/model_loss_message_params.go +++ b/pkg/tensorleapapi/model_loss_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_low_performance_insight.go b/pkg/tensorleapapi/model_low_performance_insight.go index 70bd58ce..461892ea 100644 --- a/pkg/tensorleapapi/model_low_performance_insight.go +++ b/pkg/tensorleapapi/model_low_performance_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_machine_type_option.go b/pkg/tensorleapapi/model_machine_type_option.go index 44fdfd1c..e9c0069b 100644 --- a/pkg/tensorleapapi/model_machine_type_option.go +++ b/pkg/tensorleapapi/model_machine_type_option.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mask_image_data.go b/pkg/tensorleapapi/model_mask_image_data.go index 656703e7..e4565903 100644 --- a/pkg/tensorleapapi/model_mask_image_data.go +++ b/pkg/tensorleapapi/model_mask_image_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mask_text_data.go b/pkg/tensorleapapi/model_mask_text_data.go index e72ab618..96ff75a9 100644 --- a/pkg/tensorleapapi/model_mask_text_data.go +++ b/pkg/tensorleapapi/model_mask_text_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_message_level.go b/pkg/tensorleapapi/model_message_level.go index 5de3055e..80ff169b 100644 --- a/pkg/tensorleapapi/model_message_level.go +++ b/pkg/tensorleapapi/model_message_level.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metadata_field.go b/pkg/tensorleapapi/model_metadata_field.go index 96dca73a..d1cf8cc9 100644 --- a/pkg/tensorleapapi/model_metadata_field.go +++ b/pkg/tensorleapapi/model_metadata_field.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metadata_field_value.go b/pkg/tensorleapapi/model_metadata_field_value.go index 04bd3532..21521b17 100644 --- a/pkg/tensorleapapi/model_metadata_field_value.go +++ b/pkg/tensorleapapi/model_metadata_field_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metric_instance.go b/pkg/tensorleapapi/model_metric_instance.go index 72e4dffa..550908b0 100644 --- a/pkg/tensorleapapi/model_metric_instance.go +++ b/pkg/tensorleapapi/model_metric_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metric_message_params.go b/pkg/tensorleapapi/model_metric_message_params.go index 0736c8a4..eecc728e 100644 --- a/pkg/tensorleapapi/model_metric_message_params.go +++ b/pkg/tensorleapapi/model_metric_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metric_statistic_element.go b/pkg/tensorleapapi/model_metric_statistic_element.go index 54ed396c..70c14953 100644 --- a/pkg/tensorleapapi/model_metric_statistic_element.go +++ b/pkg/tensorleapapi/model_metric_statistic_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metric_statistic_element_value.go b/pkg/tensorleapapi/model_metric_statistic_element_value.go index d92613f2..67875143 100644 --- a/pkg/tensorleapapi/model_metric_statistic_element_value.go +++ b/pkg/tensorleapapi/model_metric_statistic_element_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mislabeled_samples_insight.go b/pkg/tensorleapapi/model_mislabeled_samples_insight.go index b96b4073..6d43b326 100644 --- a/pkg/tensorleapapi/model_mislabeled_samples_insight.go +++ b/pkg/tensorleapapi/model_mislabeled_samples_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_model_graph.go b/pkg/tensorleapapi/model_model_graph.go index f926daa6..c07c265e 100644 --- a/pkg/tensorleapapi/model_model_graph.go +++ b/pkg/tensorleapapi/model_model_graph.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_model_setup.go b/pkg/tensorleapapi/model_model_setup.go index b700e73e..35eccf4b 100644 --- a/pkg/tensorleapapi/model_model_setup.go +++ b/pkg/tensorleapapi/model_model_setup.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_module.go b/pkg/tensorleapapi/model_module.go index 2a1b0219..62274076 100644 --- a/pkg/tensorleapapi/model_module.go +++ b/pkg/tensorleapapi/model_module.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_module_message_data.go b/pkg/tensorleapapi/model_module_message_data.go index b19c2ded..880dd0f6 100644 --- a/pkg/tensorleapapi/model_module_message_data.go +++ b/pkg/tensorleapapi/model_module_message_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_module_status.go b/pkg/tensorleapapi/model_module_status.go index 930f0bc0..ca1ec9de 100644 --- a/pkg/tensorleapapi/model_module_status.go +++ b/pkg/tensorleapapi/model_module_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_module_status_all_modules.go b/pkg/tensorleapapi/model_module_status_all_modules.go index 3f120221..5dbff3dc 100644 --- a/pkg/tensorleapapi/model_module_status_all_modules.go +++ b/pkg/tensorleapapi/model_module_status_all_modules.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_monitored_module_type.go b/pkg/tensorleapapi/model_monitored_module_type.go index 5a6ef493..3cfc5f39 100644 --- a/pkg/tensorleapapi/model_monitored_module_type.go +++ b/pkg/tensorleapapi/model_monitored_module_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_multi_charts_params.go b/pkg/tensorleapapi/model_multi_charts_params.go index 4acba5a6..f7bd32d5 100644 --- a/pkg/tensorleapapi/model_multi_charts_params.go +++ b/pkg/tensorleapapi/model_multi_charts_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_multi_charts_response.go b/pkg/tensorleapapi/model_multi_charts_response.go index 78c98b2a..d5fd4e25 100644 --- a/pkg/tensorleapapi/model_multi_charts_response.go +++ b/pkg/tensorleapapi/model_multi_charts_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_multi_threshold_confusion_matrix_params.go b/pkg/tensorleapapi/model_multi_threshold_confusion_matrix_params.go index d77b87f2..69aa4956 100644 --- a/pkg/tensorleapapi/model_multi_threshold_confusion_matrix_params.go +++ b/pkg/tensorleapapi/model_multi_threshold_confusion_matrix_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mutual_information_element.go b/pkg/tensorleapapi/model_mutual_information_element.go index 1965cd3b..90718485 100644 --- a/pkg/tensorleapapi/model_mutual_information_element.go +++ b/pkg/tensorleapapi/model_mutual_information_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mutual_information_feature.go b/pkg/tensorleapapi/model_mutual_information_feature.go index 04cdf408..9d5baef9 100644 --- a/pkg/tensorleapapi/model_mutual_information_feature.go +++ b/pkg/tensorleapapi/model_mutual_information_feature.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_node_message_params.go b/pkg/tensorleapapi/model_node_message_params.go index 89ebf303..e42a3e09 100644 --- a/pkg/tensorleapapi/model_node_message_params.go +++ b/pkg/tensorleapapi/model_node_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_node_type.go b/pkg/tensorleapapi/model_node_type.go index 585537e2..595c83a8 100644 --- a/pkg/tensorleapapi/model_node_type.go +++ b/pkg/tensorleapapi/model_node_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_notification.go b/pkg/tensorleapapi/model_notification.go index 14baf00b..8d33dc64 100644 --- a/pkg/tensorleapapi/model_notification.go +++ b/pkg/tensorleapapi/model_notification.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_number_or_string.go b/pkg/tensorleapapi/model_number_or_string.go index 3b90fa20..a305869c 100644 --- a/pkg/tensorleapapi/model_number_or_string.go +++ b/pkg/tensorleapapi/model_number_or_string.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_number_schema.go b/pkg/tensorleapapi/model_number_schema.go index afee4fad..4f446e39 100644 --- a/pkg/tensorleapapi/model_number_schema.go +++ b/pkg/tensorleapapi/model_number_schema.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_operator_enum.go b/pkg/tensorleapapi/model_operator_enum.go index 74792197..71903890 100644 --- a/pkg/tensorleapapi/model_operator_enum.go +++ b/pkg/tensorleapapi/model_operator_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_optional_analysis.go b/pkg/tensorleapapi/model_optional_analysis.go index 21090603..e5b3638e 100644 --- a/pkg/tensorleapapi/model_optional_analysis.go +++ b/pkg/tensorleapapi/model_optional_analysis.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_order_type.go b/pkg/tensorleapapi/model_order_type.go index 299eb185..43ee17cf 100644 --- a/pkg/tensorleapapi/model_order_type.go +++ b/pkg/tensorleapapi/model_order_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_out_of_distribution_insight.go b/pkg/tensorleapapi/model_out_of_distribution_insight.go index 2d698f87..6455a4d6 100644 --- a/pkg/tensorleapapi/model_out_of_distribution_insight.go +++ b/pkg/tensorleapapi/model_out_of_distribution_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_overwrite_model_params.go b/pkg/tensorleapapi/model_overwrite_model_params.go index 2865dfd9..09f529ce 100644 --- a/pkg/tensorleapapi/model_overwrite_model_params.go +++ b/pkg/tensorleapapi/model_overwrite_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_panel_layout.go b/pkg/tensorleapapi/model_panel_layout.go index 331707aa..a69f5329 100644 --- a/pkg/tensorleapapi/model_panel_layout.go +++ b/pkg/tensorleapapi/model_panel_layout.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_pares_code_snapshot_params.go b/pkg/tensorleapapi/model_pares_code_snapshot_params.go index 640e3c6c..637c8498 100644 --- a/pkg/tensorleapapi/model_pares_code_snapshot_params.go +++ b/pkg/tensorleapapi/model_pares_code_snapshot_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_partial_population_exploration_artifacts_.go b/pkg/tensorleapapi/model_partial_population_exploration_artifacts_.go index 475428b2..00cc8a51 100644 --- a/pkg/tensorleapapi/model_partial_population_exploration_artifacts_.go +++ b/pkg/tensorleapapi/model_partial_population_exploration_artifacts_.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go b/pkg/tensorleapapi/model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go index 0b6b8f0e..290810dd 100644 --- a/pkg/tensorleapapi/model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go +++ b/pkg/tensorleapapi/model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_pod_logs.go b/pkg/tensorleapapi/model_pod_logs.go index 6e881192..fdaee9b3 100644 --- a/pkg/tensorleapapi/model_pod_logs.go +++ b/pkg/tensorleapapi/model_pod_logs.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_pop_explore_info.go b/pkg/tensorleapapi/model_pop_explore_info.go index 31057411..3ebe5816 100644 --- a/pkg/tensorleapapi/model_pop_explore_info.go +++ b/pkg/tensorleapapi/model_pop_explore_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_populate_collection_from_filters_params.go b/pkg/tensorleapapi/model_populate_collection_from_filters_params.go index 3702b563..28b26333 100644 --- a/pkg/tensorleapapi/model_populate_collection_from_filters_params.go +++ b/pkg/tensorleapapi/model_populate_collection_from_filters_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_populate_collection_from_filters_response.go b/pkg/tensorleapapi/model_populate_collection_from_filters_response.go index c2eb928c..be21b28f 100644 --- a/pkg/tensorleapapi/model_populate_collection_from_filters_response.go +++ b/pkg/tensorleapapi/model_populate_collection_from_filters_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_dashlet.go b/pkg/tensorleapapi/model_population_exploration_dashlet.go index b320b065..c296d2ef 100644 --- a/pkg/tensorleapapi/model_population_exploration_dashlet.go +++ b/pkg/tensorleapapi/model_population_exploration_dashlet.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_dashlet_data.go b/pkg/tensorleapapi/model_population_exploration_dashlet_data.go index 03f19090..c6d1e211 100644 --- a/pkg/tensorleapapi/model_population_exploration_dashlet_data.go +++ b/pkg/tensorleapapi/model_population_exploration_dashlet_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_job_params.go b/pkg/tensorleapapi/model_population_exploration_job_params.go index c19083bd..4ec20c4b 100644 --- a/pkg/tensorleapapi/model_population_exploration_job_params.go +++ b/pkg/tensorleapapi/model_population_exploration_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_params.go b/pkg/tensorleapapi/model_population_exploration_params.go index 6e1889c6..0fa6fae6 100644 --- a/pkg/tensorleapapi/model_population_exploration_params.go +++ b/pkg/tensorleapapi/model_population_exploration_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_response.go b/pkg/tensorleapapi/model_population_exploration_response.go index 0bde309f..a47896b2 100644 --- a/pkg/tensorleapapi/model_population_exploration_response.go +++ b/pkg/tensorleapapi/model_population_exploration_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_response_status.go b/pkg/tensorleapapi/model_population_exploration_response_status.go index a219988d..df51242e 100644 --- a/pkg/tensorleapapi/model_population_exploration_response_status.go +++ b/pkg/tensorleapapi/model_population_exploration_response_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_prediction_labels.go b/pkg/tensorleapapi/model_prediction_labels.go index f44f331a..2f8659ca 100644 --- a/pkg/tensorleapapi/model_prediction_labels.go +++ b/pkg/tensorleapapi/model_prediction_labels.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_prediction_type_instance.go b/pkg/tensorleapapi/model_prediction_type_instance.go index a13797d4..24a7abac 100644 --- a/pkg/tensorleapapi/model_prediction_type_instance.go +++ b/pkg/tensorleapapi/model_prediction_type_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_project.go b/pkg/tensorleapapi/model_project.go index 29c14a32..b4070c84 100644 --- a/pkg/tensorleapapi/model_project.go +++ b/pkg/tensorleapapi/model_project.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_project_access.go b/pkg/tensorleapapi/model_project_access.go index 40ed6864..6632ab30 100644 --- a/pkg/tensorleapapi/model_project_access.go +++ b/pkg/tensorleapapi/model_project_access.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_project_meta.go b/pkg/tensorleapapi/model_project_meta.go index df4cd452..827db274 100644 --- a/pkg/tensorleapapi/model_project_meta.go +++ b/pkg/tensorleapapi/model_project_meta.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_project_status.go b/pkg/tensorleapapi/model_project_status.go index 0d105a82..f6081892 100644 --- a/pkg/tensorleapapi/model_project_status.go +++ b/pkg/tensorleapapi/model_project_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_push_code_snapshot_params.go b/pkg/tensorleapapi/model_push_code_snapshot_params.go index 48202117..4d1d872c 100644 --- a/pkg/tensorleapapi/model_push_code_snapshot_params.go +++ b/pkg/tensorleapapi/model_push_code_snapshot_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_push_code_snapshot_response.go b/pkg/tensorleapapi/model_push_code_snapshot_response.go index 4e7ad785..35dab7f2 100644 --- a/pkg/tensorleapapi/model_push_code_snapshot_response.go +++ b/pkg/tensorleapapi/model_push_code_snapshot_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_query_field_values.go b/pkg/tensorleapapi/model_query_field_values.go index 403a12e9..860c879a 100644 --- a/pkg/tensorleapapi/model_query_field_values.go +++ b/pkg/tensorleapapi/model_query_field_values.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_reduction_algorithm.go b/pkg/tensorleapapi/model_reduction_algorithm.go index c829f3d3..4557855b 100644 --- a/pkg/tensorleapapi/model_reduction_algorithm.go +++ b/pkg/tensorleapapi/model_reduction_algorithm.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_remove_experiment_params.go b/pkg/tensorleapapi/model_remove_experiment_params.go index 0dd00347..7f0bcafb 100644 --- a/pkg/tensorleapapi/model_remove_experiment_params.go +++ b/pkg/tensorleapapi/model_remove_experiment_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_remove_sample_collection_params.go b/pkg/tensorleapapi/model_remove_sample_collection_params.go index 0c558cf8..7ea31bfa 100644 --- a/pkg/tensorleapapi/model_remove_sample_collection_params.go +++ b/pkg/tensorleapapi/model_remove_sample_collection_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_remove_samples_from_collection_params.go b/pkg/tensorleapapi/model_remove_samples_from_collection_params.go index 3c3a614b..38070bb3 100644 --- a/pkg/tensorleapapi/model_remove_samples_from_collection_params.go +++ b/pkg/tensorleapapi/model_remove_samples_from_collection_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_remove_samples_from_collection_response.go b/pkg/tensorleapapi/model_remove_samples_from_collection_response.go index 80425711..34ce0c66 100644 --- a/pkg/tensorleapapi/model_remove_samples_from_collection_response.go +++ b/pkg/tensorleapapi/model_remove_samples_from_collection_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_rename_experiment_params.go b/pkg/tensorleapapi/model_rename_experiment_params.go index f76347c0..8203922c 100644 --- a/pkg/tensorleapapi/model_rename_experiment_params.go +++ b/pkg/tensorleapapi/model_rename_experiment_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_reset_evaluate_params.go b/pkg/tensorleapapi/model_reset_evaluate_params.go index 16ac790f..d008b11c 100644 --- a/pkg/tensorleapapi/model_reset_evaluate_params.go +++ b/pkg/tensorleapapi/model_reset_evaluate_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_roc_confusion_matrix_params.go b/pkg/tensorleapapi/model_roc_confusion_matrix_params.go index f51fb74d..2b13134a 100644 --- a/pkg/tensorleapapi/model_roc_confusion_matrix_params.go +++ b/pkg/tensorleapapi/model_roc_confusion_matrix_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_rotate_api_key_response.go b/pkg/tensorleapapi/model_rotate_api_key_response.go index f14a21db..9b3e34b6 100644 --- a/pkg/tensorleapapi/model_rotate_api_key_response.go +++ b/pkg/tensorleapapi/model_rotate_api_key_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_run_import_model_response.go b/pkg/tensorleapapi/model_run_import_model_response.go index 01c0b8f8..c4b2a1ce 100644 --- a/pkg/tensorleapapi/model_run_import_model_response.go +++ b/pkg/tensorleapapi/model_run_import_model_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_run_process.go b/pkg/tensorleapapi/model_run_process.go index bc10809a..9d1ebe58 100644 --- a/pkg/tensorleapapi/model_run_process.go +++ b/pkg/tensorleapapi/model_run_process.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_analysis_algo.go b/pkg/tensorleapapi/model_sample_analysis_algo.go index fe605e87..cd8cd444 100644 --- a/pkg/tensorleapapi/model_sample_analysis_algo.go +++ b/pkg/tensorleapapi/model_sample_analysis_algo.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_analysis_dashlet.go b/pkg/tensorleapapi/model_sample_analysis_dashlet.go index dc59f966..62eb3816 100644 --- a/pkg/tensorleapapi/model_sample_analysis_dashlet.go +++ b/pkg/tensorleapapi/model_sample_analysis_dashlet.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_analysis_params.go b/pkg/tensorleapapi/model_sample_analysis_params.go index 6fc1cb30..26a3637d 100644 --- a/pkg/tensorleapapi/model_sample_analysis_params.go +++ b/pkg/tensorleapapi/model_sample_analysis_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_analysis_viz.go b/pkg/tensorleapapi/model_sample_analysis_viz.go index 96c86962..134650eb 100644 --- a/pkg/tensorleapapi/model_sample_analysis_viz.go +++ b/pkg/tensorleapapi/model_sample_analysis_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_asset_id.go b/pkg/tensorleapapi/model_sample_asset_id.go index 8a0328d4..5c61017f 100644 --- a/pkg/tensorleapapi/model_sample_asset_id.go +++ b/pkg/tensorleapapi/model_sample_asset_id.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_asset_names.go b/pkg/tensorleapapi/model_sample_asset_names.go index 1cbefa8f..6fcb607f 100644 --- a/pkg/tensorleapapi/model_sample_asset_names.go +++ b/pkg/tensorleapapi/model_sample_asset_names.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_collection.go b/pkg/tensorleapapi/model_sample_collection.go index 6601e6c5..b49b1078 100644 --- a/pkg/tensorleapapi/model_sample_collection.go +++ b/pkg/tensorleapapi/model_sample_collection.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,16 +21,21 @@ var _ MappedNullable = &SampleCollection{} // SampleCollection struct for SampleCollection type SampleCollection struct { - SamplesCount *float64 `json:"samplesCount,omitempty"` - SamplesBlobName *string `json:"samplesBlobName,omitempty"` - CreatedBy *string `json:"createdBy,omitempty"` - CreatedAt time.Time `json:"createdAt"` - Description *string `json:"description,omitempty"` - Name string `json:"name"` - Cid string `json:"cid"` - ProjectId string `json:"projectId"` - TeamId string `json:"teamId"` - AdditionalProperties map[string]interface{} + // Error message when populationStatus === 'failed'. + PopulationError *string `json:"populationError,omitempty"` + // Live count of samples resolved so far while 'processing' — drives the \"Creating… N samples so far\" / \"Adding…\" progress text. + ProcessedSamplesCount *float64 `json:"processedSamplesCount,omitempty"` + PopulationStatus CollectionPopulationStatus `json:"populationStatus"` + SamplesCount *float64 `json:"samplesCount,omitempty"` + SamplesBlobName *string `json:"samplesBlobName,omitempty"` + CreatedBy *string `json:"createdBy,omitempty"` + CreatedAt time.Time `json:"createdAt"` + Description *string `json:"description,omitempty"` + Name string `json:"name"` + Cid string `json:"cid"` + ProjectId string `json:"projectId"` + TeamId string `json:"teamId"` + AdditionalProperties map[string]interface{} } type _SampleCollection SampleCollection @@ -39,8 +44,9 @@ type _SampleCollection SampleCollection // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSampleCollection(createdAt time.Time, name string, cid string, projectId string, teamId string) *SampleCollection { +func NewSampleCollection(populationStatus CollectionPopulationStatus, createdAt time.Time, name string, cid string, projectId string, teamId string) *SampleCollection { this := SampleCollection{} + this.PopulationStatus = populationStatus this.CreatedAt = createdAt this.Name = name this.Cid = cid @@ -57,6 +63,94 @@ func NewSampleCollectionWithDefaults() *SampleCollection { return &this } +// GetPopulationError returns the PopulationError field value if set, zero value otherwise. +func (o *SampleCollection) GetPopulationError() string { + if o == nil || IsNil(o.PopulationError) { + var ret string + return ret + } + return *o.PopulationError +} + +// GetPopulationErrorOk returns a tuple with the PopulationError field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SampleCollection) GetPopulationErrorOk() (*string, bool) { + if o == nil || IsNil(o.PopulationError) { + return nil, false + } + return o.PopulationError, true +} + +// HasPopulationError returns a boolean if a field has been set. +func (o *SampleCollection) HasPopulationError() bool { + if o != nil && !IsNil(o.PopulationError) { + return true + } + + return false +} + +// SetPopulationError gets a reference to the given string and assigns it to the PopulationError field. +func (o *SampleCollection) SetPopulationError(v string) { + o.PopulationError = &v +} + +// GetProcessedSamplesCount returns the ProcessedSamplesCount field value if set, zero value otherwise. +func (o *SampleCollection) GetProcessedSamplesCount() float64 { + if o == nil || IsNil(o.ProcessedSamplesCount) { + var ret float64 + return ret + } + return *o.ProcessedSamplesCount +} + +// GetProcessedSamplesCountOk returns a tuple with the ProcessedSamplesCount field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SampleCollection) GetProcessedSamplesCountOk() (*float64, bool) { + if o == nil || IsNil(o.ProcessedSamplesCount) { + return nil, false + } + return o.ProcessedSamplesCount, true +} + +// HasProcessedSamplesCount returns a boolean if a field has been set. +func (o *SampleCollection) HasProcessedSamplesCount() bool { + if o != nil && !IsNil(o.ProcessedSamplesCount) { + return true + } + + return false +} + +// SetProcessedSamplesCount gets a reference to the given float64 and assigns it to the ProcessedSamplesCount field. +func (o *SampleCollection) SetProcessedSamplesCount(v float64) { + o.ProcessedSamplesCount = &v +} + +// GetPopulationStatus returns the PopulationStatus field value +func (o *SampleCollection) GetPopulationStatus() CollectionPopulationStatus { + if o == nil { + var ret CollectionPopulationStatus + return ret + } + + return o.PopulationStatus +} + +// GetPopulationStatusOk returns a tuple with the PopulationStatus field value +// and a boolean to check if the value has been set. +func (o *SampleCollection) GetPopulationStatusOk() (*CollectionPopulationStatus, bool) { + if o == nil { + return nil, false + } + return &o.PopulationStatus, true +} + +// SetPopulationStatus sets field value +func (o *SampleCollection) SetPopulationStatus(v CollectionPopulationStatus) { + o.PopulationStatus = v +} + // GetSamplesCount returns the SamplesCount field value if set, zero value otherwise. func (o *SampleCollection) GetSamplesCount() float64 { if o == nil || IsNil(o.SamplesCount) { @@ -315,6 +409,13 @@ func (o SampleCollection) MarshalJSON() ([]byte, error) { func (o SampleCollection) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} + if !IsNil(o.PopulationError) { + toSerialize["populationError"] = o.PopulationError + } + if !IsNil(o.ProcessedSamplesCount) { + toSerialize["processedSamplesCount"] = o.ProcessedSamplesCount + } + toSerialize["populationStatus"] = o.PopulationStatus if !IsNil(o.SamplesCount) { toSerialize["samplesCount"] = o.SamplesCount } @@ -345,6 +446,7 @@ func (o *SampleCollection) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ + "populationStatus", "createdAt", "name", "cid", @@ -379,6 +481,9 @@ func (o *SampleCollection) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "populationError") + delete(additionalProperties, "processedSamplesCount") + delete(additionalProperties, "populationStatus") delete(additionalProperties, "samplesCount") delete(additionalProperties, "samplesBlobName") delete(additionalProperties, "createdBy") diff --git a/pkg/tensorleapapi/model_sample_id_type.go b/pkg/tensorleapapi/model_sample_id_type.go index ed6d1af2..0bfe3c0f 100644 --- a/pkg/tensorleapapi/model_sample_id_type.go +++ b/pkg/tensorleapapi/model_sample_id_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_identity.go b/pkg/tensorleapapi/model_sample_identity.go index 94777743..59fdf92f 100644 --- a/pkg/tensorleapapi/model_sample_identity.go +++ b/pkg/tensorleapapi/model_sample_identity.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_selection_info.go b/pkg/tensorleapapi/model_sample_selection_info.go index 92a6a7bc..dd61ee28 100644 --- a/pkg/tensorleapapi/model_sample_selection_info.go +++ b/pkg/tensorleapapi/model_sample_selection_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_visualization_info.go b/pkg/tensorleapapi/model_sample_visualization_info.go index f3e9581f..4ca66c52 100644 --- a/pkg/tensorleapapi/model_sample_visualization_info.go +++ b/pkg/tensorleapapi/model_sample_visualization_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_samples_visualizations_refresh_params.go b/pkg/tensorleapapi/model_samples_visualizations_refresh_params.go index 9b3e1496..87d0dc69 100644 --- a/pkg/tensorleapapi/model_samples_visualizations_refresh_params.go +++ b/pkg/tensorleapapi/model_samples_visualizations_refresh_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_save_analyzer_layout_params.go b/pkg/tensorleapapi/model_save_analyzer_layout_params.go index 3550d261..c17ae412 100644 --- a/pkg/tensorleapapi/model_save_analyzer_layout_params.go +++ b/pkg/tensorleapapi/model_save_analyzer_layout_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_filter.go b/pkg/tensorleapapi/model_scatter_filter.go index 01dd491d..abf7e3c8 100644 --- a/pkg/tensorleapapi/model_scatter_filter.go +++ b/pkg/tensorleapapi/model_scatter_filter.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -23,6 +23,7 @@ type ScatterFilter struct { Metric string `json:"metric"` Value ScatterFilterValue `json:"value"` Operator OperatorEnum `json:"operator"` + RankBy *string `json:"rank_by,omitempty"` AdditionalProperties map[string]interface{} } @@ -120,6 +121,38 @@ func (o *ScatterFilter) SetOperator(v OperatorEnum) { o.Operator = v } +// GetRankBy returns the RankBy field value if set, zero value otherwise. +func (o *ScatterFilter) GetRankBy() string { + if o == nil || IsNil(o.RankBy) { + var ret string + return ret + } + return *o.RankBy +} + +// GetRankByOk returns a tuple with the RankBy field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ScatterFilter) GetRankByOk() (*string, bool) { + if o == nil || IsNil(o.RankBy) { + return nil, false + } + return o.RankBy, true +} + +// HasRankBy returns a boolean if a field has been set. +func (o *ScatterFilter) HasRankBy() bool { + if o != nil && !IsNil(o.RankBy) { + return true + } + + return false +} + +// SetRankBy gets a reference to the given string and assigns it to the RankBy field. +func (o *ScatterFilter) SetRankBy(v string) { + o.RankBy = &v +} + func (o ScatterFilter) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -133,6 +166,9 @@ func (o ScatterFilter) ToMap() (map[string]interface{}, error) { toSerialize["metric"] = o.Metric toSerialize["value"] = o.Value toSerialize["operator"] = o.Operator + if !IsNil(o.RankBy) { + toSerialize["rank_by"] = o.RankBy + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -181,6 +217,7 @@ func (o *ScatterFilter) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "metric") delete(additionalProperties, "value") delete(additionalProperties, "operator") + delete(additionalProperties, "rank_by") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_scatter_filter_value.go b/pkg/tensorleapapi/model_scatter_filter_value.go index fd82e695..b3b5b5d2 100644 --- a/pkg/tensorleapapi/model_scatter_filter_value.go +++ b/pkg/tensorleapapi/model_scatter_filter_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_insight_base.go b/pkg/tensorleapapi/model_scatter_insight_base.go index f37ebc6a..c9ee1aff 100644 --- a/pkg/tensorleapapi/model_scatter_insight_base.go +++ b/pkg/tensorleapapi/model_scatter_insight_base.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_insight_type.go b/pkg/tensorleapapi/model_scatter_insight_type.go index 41271bc2..b9fd67f8 100644 --- a/pkg/tensorleapapi/model_scatter_insight_type.go +++ b/pkg/tensorleapapi/model_scatter_insight_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_viz.go b/pkg/tensorleapapi/model_scatter_viz.go index c46fbe08..ce2d2263 100644 --- a/pkg/tensorleapapi/model_scatter_viz.go +++ b/pkg/tensorleapapi/model_scatter_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_viz_data_state.go b/pkg/tensorleapapi/model_scatter_viz_data_state.go index 5ac59fd2..ed37eed6 100644 --- a/pkg/tensorleapapi/model_scatter_viz_data_state.go +++ b/pkg/tensorleapapi/model_scatter_viz_data_state.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_schema_with_key.go b/pkg/tensorleapapi/model_schema_with_key.go index fe451d86..e858bbf3 100644 --- a/pkg/tensorleapapi/model_schema_with_key.go +++ b/pkg/tensorleapapi/model_schema_with_key.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_secret_manager.go b/pkg/tensorleapapi/model_secret_manager.go index 40f6038f..0a1f2d61 100644 --- a/pkg/tensorleapapi/model_secret_manager.go +++ b/pkg/tensorleapapi/model_secret_manager.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_send_user_message_params.go b/pkg/tensorleapapi/model_send_user_message_params.go index abb46248..02a39215 100644 --- a/pkg/tensorleapapi/model_send_user_message_params.go +++ b/pkg/tensorleapapi/model_send_user_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_send_user_message_response.go b/pkg/tensorleapapi/model_send_user_message_response.go index 92a0361b..cc55716e 100644 --- a/pkg/tensorleapapi/model_send_user_message_response.go +++ b/pkg/tensorleapapi/model_send_user_message_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session_test_.go b/pkg/tensorleapapi/model_session_test_.go index e72a13f9..e9cc302b 100644 --- a/pkg/tensorleapapi/model_session_test_.go +++ b/pkg/tensorleapapi/model_session_test_.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -30,6 +30,7 @@ type SessionTest struct { CreatedBy string `json:"createdBy"` TestFilter ClientFilterParams `json:"testFilter"` DatasetFilter []ESFilter `json:"datasetFilter"` + Description *string `json:"description,omitempty"` AdditionalProperties map[string]interface{} } @@ -277,6 +278,38 @@ func (o *SessionTest) SetDatasetFilter(v []ESFilter) { o.DatasetFilter = v } +// GetDescription returns the Description field value if set, zero value otherwise. +func (o *SessionTest) GetDescription() string { + if o == nil || IsNil(o.Description) { + var ret string + return ret + } + return *o.Description +} + +// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SessionTest) GetDescriptionOk() (*string, bool) { + if o == nil || IsNil(o.Description) { + return nil, false + } + return o.Description, true +} + +// HasDescription returns a boolean if a field has been set. +func (o *SessionTest) HasDescription() bool { + if o != nil && !IsNil(o.Description) { + return true + } + + return false +} + +// SetDescription gets a reference to the given string and assigns it to the Description field. +func (o *SessionTest) SetDescription(v string) { + o.Description = &v +} + func (o SessionTest) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -296,6 +329,9 @@ func (o SessionTest) ToMap() (map[string]interface{}, error) { toSerialize["createdBy"] = o.CreatedBy toSerialize["testFilter"] = o.TestFilter toSerialize["datasetFilter"] = o.DatasetFilter + if !IsNil(o.Description) { + toSerialize["description"] = o.Description + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -356,6 +392,7 @@ func (o *SessionTest) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "createdBy") delete(additionalProperties, "testFilter") delete(additionalProperties, "datasetFilter") + delete(additionalProperties, "description") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_session_test_data.go b/pkg/tensorleapapi/model_session_test_data.go index 36727731..c03fe340 100644 --- a/pkg/tensorleapapi/model_session_test_data.go +++ b/pkg/tensorleapapi/model_session_test_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session_test_result.go b/pkg/tensorleapapi/model_session_test_result.go index 6f90c982..cb92793e 100644 --- a/pkg/tensorleapapi/model_session_test_result.go +++ b/pkg/tensorleapapi/model_session_test_result.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session_test_result_error.go b/pkg/tensorleapapi/model_session_test_result_error.go index 06498d8d..08670963 100644 --- a/pkg/tensorleapapi/model_session_test_result_error.go +++ b/pkg/tensorleapapi/model_session_test_result_error.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session_test_result_not_found.go b/pkg/tensorleapapi/model_session_test_result_not_found.go index c6a238eb..1ed9f326 100644 --- a/pkg/tensorleapapi/model_session_test_result_not_found.go +++ b/pkg/tensorleapapi/model_session_test_result_not_found.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session_test_result_success.go b/pkg/tensorleapapi/model_session_test_result_success.go index fea7297d..ff5c336f 100644 --- a/pkg/tensorleapapi/model_session_test_result_success.go +++ b/pkg/tensorleapapi/model_session_test_result_success.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_active_version_params.go b/pkg/tensorleapapi/model_set_active_version_params.go index 33a20527..fe94f04a 100644 --- a/pkg/tensorleapapi/model_set_active_version_params.go +++ b/pkg/tensorleapapi/model_set_active_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_active_version_response.go b/pkg/tensorleapapi/model_set_active_version_response.go index ca9bc1b1..79169875 100644 --- a/pkg/tensorleapapi/model_set_active_version_response.go +++ b/pkg/tensorleapapi/model_set_active_version_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_code_challenge_request.go b/pkg/tensorleapapi/model_set_code_challenge_request.go index 8ee2d01b..db3c77f4 100644 --- a/pkg/tensorleapapi/model_set_code_challenge_request.go +++ b/pkg/tensorleapapi/model_set_code_challenge_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_default_team_request.go b/pkg/tensorleapapi/model_set_default_team_request.go index 74d087ab..207ff47a 100644 --- a/pkg/tensorleapapi/model_set_default_team_request.go +++ b/pkg/tensorleapapi/model_set_default_team_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_experiment_properties_request.go b/pkg/tensorleapapi/model_set_experiment_properties_request.go index 8eb4cc3c..863ad7b7 100644 --- a/pkg/tensorleapapi/model_set_experiment_properties_request.go +++ b/pkg/tensorleapapi/model_set_experiment_properties_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_setting_value_wrapper.go b/pkg/tensorleapapi/model_set_setting_value_wrapper.go index a502b312..eb0c55d1 100644 --- a/pkg/tensorleapapi/model_set_setting_value_wrapper.go +++ b/pkg/tensorleapapi/model_set_setting_value_wrapper.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_team_machine_type_params.go b/pkg/tensorleapapi/model_set_team_machine_type_params.go index e28bce02..f69a381f 100644 --- a/pkg/tensorleapapi/model_set_team_machine_type_params.go +++ b/pkg/tensorleapapi/model_set_team_machine_type_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_user_notifications_as_read_200_response.go b/pkg/tensorleapapi/model_set_user_notifications_as_read_200_response.go index 8b4bc26d..70e16ddc 100644 --- a/pkg/tensorleapapi/model_set_user_notifications_as_read_200_response.go +++ b/pkg/tensorleapapi/model_set_user_notifications_as_read_200_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_version_update_actions_params.go b/pkg/tensorleapapi/model_set_version_update_actions_params.go new file mode 100644 index 00000000..726bc8a2 --- /dev/null +++ b/pkg/tensorleapapi/model_set_version_update_actions_params.go @@ -0,0 +1,224 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.81 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the SetVersionUpdateActionsParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &SetVersionUpdateActionsParams{} + +// SetVersionUpdateActionsParams struct for SetVersionUpdateActionsParams +type SetVersionUpdateActionsParams struct { + VersionId string `json:"versionId"` + ProjectId string `json:"projectId"` + UpdateActions []UpdateAction `json:"updateActions"` + AdditionalProperties map[string]interface{} +} + +type _SetVersionUpdateActionsParams SetVersionUpdateActionsParams + +// NewSetVersionUpdateActionsParams instantiates a new SetVersionUpdateActionsParams object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewSetVersionUpdateActionsParams(versionId string, projectId string, updateActions []UpdateAction) *SetVersionUpdateActionsParams { + this := SetVersionUpdateActionsParams{} + this.VersionId = versionId + this.ProjectId = projectId + this.UpdateActions = updateActions + return &this +} + +// NewSetVersionUpdateActionsParamsWithDefaults instantiates a new SetVersionUpdateActionsParams object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewSetVersionUpdateActionsParamsWithDefaults() *SetVersionUpdateActionsParams { + this := SetVersionUpdateActionsParams{} + return &this +} + +// GetVersionId returns the VersionId field value +func (o *SetVersionUpdateActionsParams) GetVersionId() string { + if o == nil { + var ret string + return ret + } + + return o.VersionId +} + +// GetVersionIdOk returns a tuple with the VersionId field value +// and a boolean to check if the value has been set. +func (o *SetVersionUpdateActionsParams) GetVersionIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.VersionId, true +} + +// SetVersionId sets field value +func (o *SetVersionUpdateActionsParams) SetVersionId(v string) { + o.VersionId = v +} + +// GetProjectId returns the ProjectId field value +func (o *SetVersionUpdateActionsParams) GetProjectId() string { + if o == nil { + var ret string + return ret + } + + return o.ProjectId +} + +// GetProjectIdOk returns a tuple with the ProjectId field value +// and a boolean to check if the value has been set. +func (o *SetVersionUpdateActionsParams) GetProjectIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ProjectId, true +} + +// SetProjectId sets field value +func (o *SetVersionUpdateActionsParams) SetProjectId(v string) { + o.ProjectId = v +} + +// GetUpdateActions returns the UpdateActions field value +func (o *SetVersionUpdateActionsParams) GetUpdateActions() []UpdateAction { + if o == nil { + var ret []UpdateAction + return ret + } + + return o.UpdateActions +} + +// GetUpdateActionsOk returns a tuple with the UpdateActions field value +// and a boolean to check if the value has been set. +func (o *SetVersionUpdateActionsParams) GetUpdateActionsOk() ([]UpdateAction, bool) { + if o == nil { + return nil, false + } + return o.UpdateActions, true +} + +// SetUpdateActions sets field value +func (o *SetVersionUpdateActionsParams) SetUpdateActions(v []UpdateAction) { + o.UpdateActions = v +} + +func (o SetVersionUpdateActionsParams) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o SetVersionUpdateActionsParams) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["versionId"] = o.VersionId + toSerialize["projectId"] = o.ProjectId + toSerialize["updateActions"] = o.UpdateActions + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *SetVersionUpdateActionsParams) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "versionId", + "projectId", + "updateActions", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varSetVersionUpdateActionsParams := _SetVersionUpdateActionsParams{} + + err = json.Unmarshal(data, &varSetVersionUpdateActionsParams) + + if err != nil { + return err + } + + *o = SetVersionUpdateActionsParams(varSetVersionUpdateActionsParams) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "versionId") + delete(additionalProperties, "projectId") + delete(additionalProperties, "updateActions") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableSetVersionUpdateActionsParams struct { + value *SetVersionUpdateActionsParams + isSet bool +} + +func (v NullableSetVersionUpdateActionsParams) Get() *SetVersionUpdateActionsParams { + return v.value +} + +func (v *NullableSetVersionUpdateActionsParams) Set(val *SetVersionUpdateActionsParams) { + v.value = val + v.isSet = true +} + +func (v NullableSetVersionUpdateActionsParams) IsSet() bool { + return v.isSet +} + +func (v *NullableSetVersionUpdateActionsParams) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableSetVersionUpdateActionsParams(val *SetVersionUpdateActionsParams) *NullableSetVersionUpdateActionsParams { + return &NullableSetVersionUpdateActionsParams{value: val, isSet: true} +} + +func (v NullableSetVersionUpdateActionsParams) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableSetVersionUpdateActionsParams) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_set_version_update_actions_response.go b/pkg/tensorleapapi/model_set_version_update_actions_response.go new file mode 100644 index 00000000..b4038b52 --- /dev/null +++ b/pkg/tensorleapapi/model_set_version_update_actions_response.go @@ -0,0 +1,166 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.81 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the SetVersionUpdateActionsResponse type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &SetVersionUpdateActionsResponse{} + +// SetVersionUpdateActionsResponse struct for SetVersionUpdateActionsResponse +type SetVersionUpdateActionsResponse struct { + VersionId string `json:"versionId"` + AdditionalProperties map[string]interface{} +} + +type _SetVersionUpdateActionsResponse SetVersionUpdateActionsResponse + +// NewSetVersionUpdateActionsResponse instantiates a new SetVersionUpdateActionsResponse object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewSetVersionUpdateActionsResponse(versionId string) *SetVersionUpdateActionsResponse { + this := SetVersionUpdateActionsResponse{} + this.VersionId = versionId + return &this +} + +// NewSetVersionUpdateActionsResponseWithDefaults instantiates a new SetVersionUpdateActionsResponse object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewSetVersionUpdateActionsResponseWithDefaults() *SetVersionUpdateActionsResponse { + this := SetVersionUpdateActionsResponse{} + return &this +} + +// GetVersionId returns the VersionId field value +func (o *SetVersionUpdateActionsResponse) GetVersionId() string { + if o == nil { + var ret string + return ret + } + + return o.VersionId +} + +// GetVersionIdOk returns a tuple with the VersionId field value +// and a boolean to check if the value has been set. +func (o *SetVersionUpdateActionsResponse) GetVersionIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.VersionId, true +} + +// SetVersionId sets field value +func (o *SetVersionUpdateActionsResponse) SetVersionId(v string) { + o.VersionId = v +} + +func (o SetVersionUpdateActionsResponse) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o SetVersionUpdateActionsResponse) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["versionId"] = o.VersionId + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *SetVersionUpdateActionsResponse) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "versionId", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varSetVersionUpdateActionsResponse := _SetVersionUpdateActionsResponse{} + + err = json.Unmarshal(data, &varSetVersionUpdateActionsResponse) + + if err != nil { + return err + } + + *o = SetVersionUpdateActionsResponse(varSetVersionUpdateActionsResponse) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "versionId") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableSetVersionUpdateActionsResponse struct { + value *SetVersionUpdateActionsResponse + isSet bool +} + +func (v NullableSetVersionUpdateActionsResponse) Get() *SetVersionUpdateActionsResponse { + return v.value +} + +func (v *NullableSetVersionUpdateActionsResponse) Set(val *SetVersionUpdateActionsResponse) { + v.value = val + v.isSet = true +} + +func (v NullableSetVersionUpdateActionsResponse) IsSet() bool { + return v.isSet +} + +func (v *NullableSetVersionUpdateActionsResponse) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableSetVersionUpdateActionsResponse(val *SetVersionUpdateActionsResponse) *NullableSetVersionUpdateActionsResponse { + return &NullableSetVersionUpdateActionsResponse{value: val, isSet: true} +} + +func (v NullableSetVersionUpdateActionsResponse) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableSetVersionUpdateActionsResponse) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_setting_schema.go b/pkg/tensorleapapi/model_setting_schema.go index 45abca63..7c18e75e 100644 --- a/pkg/tensorleapapi/model_setting_schema.go +++ b/pkg/tensorleapapi/model_setting_schema.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_setting_value.go b/pkg/tensorleapapi/model_setting_value.go index 489ef013..9d23a3d9 100644 --- a/pkg/tensorleapapi/model_setting_value.go +++ b/pkg/tensorleapapi/model_setting_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_settings_and_values_wrapper.go b/pkg/tensorleapapi/model_settings_and_values_wrapper.go index ee1e38e5..7885825f 100644 --- a/pkg/tensorleapapi/model_settings_and_values_wrapper.go +++ b/pkg/tensorleapapi/model_settings_and_values_wrapper.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_settings_category.go b/pkg/tensorleapapi/model_settings_category.go index 388d3047..21b27f8c 100644 --- a/pkg/tensorleapapi/model_settings_category.go +++ b/pkg/tensorleapapi/model_settings_category.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -23,6 +23,7 @@ const ( SETTINGSCATEGORY_EVALUATION_MAIN SettingsCategory = "EVALUATION_MAIN" SETTINGSCATEGORY_EVALUATION_WORKERS SettingsCategory = "EVALUATION_WORKERS" SETTINGSCATEGORY_POP_EXPLORATION SettingsCategory = "POP_EXPLORATION" + SETTINGSCATEGORY_REDIS SettingsCategory = "REDIS" SETTINGSCATEGORY_GENERAL SettingsCategory = "GENERAL" ) @@ -31,6 +32,7 @@ var AllowedSettingsCategoryEnumValues = []SettingsCategory{ "EVALUATION_MAIN", "EVALUATION_WORKERS", "POP_EXPLORATION", + "REDIS", "GENERAL", } diff --git a/pkg/tensorleapapi/model_severity_metric_element.go b/pkg/tensorleapapi/model_severity_metric_element.go index 6334a1ad..20402948 100644 --- a/pkg/tensorleapapi/model_severity_metric_element.go +++ b/pkg/tensorleapapi/model_severity_metric_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_single_user_mode_settings.go b/pkg/tensorleapapi/model_single_user_mode_settings.go index 6f13c17d..c399bb94 100644 --- a/pkg/tensorleapapi/model_single_user_mode_settings.go +++ b/pkg/tensorleapapi/model_single_user_mode_settings.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sized_layout.go b/pkg/tensorleapapi/model_sized_layout.go index 2679cc43..23097eb4 100644 --- a/pkg/tensorleapapi/model_sized_layout.go +++ b/pkg/tensorleapapi/model_sized_layout.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_team.go b/pkg/tensorleapapi/model_slim_team.go index d635dadd..3c9dded6 100644 --- a/pkg/tensorleapapi/model_slim_team.go +++ b/pkg/tensorleapapi/model_slim_team.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_user_data.go b/pkg/tensorleapapi/model_slim_user_data.go index d5eede41..eb6f11e1 100644 --- a/pkg/tensorleapapi/model_slim_user_data.go +++ b/pkg/tensorleapapi/model_slim_user_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_user_data_local.go b/pkg/tensorleapapi/model_slim_user_data_local.go index 63e97102..7c690333 100644 --- a/pkg/tensorleapapi/model_slim_user_data_local.go +++ b/pkg/tensorleapapi/model_slim_user_data_local.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_version.go b/pkg/tensorleapapi/model_slim_version.go index 7649c6a1..1f79cc97 100644 --- a/pkg/tensorleapapi/model_slim_version.go +++ b/pkg/tensorleapapi/model_slim_version.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_visualization.go b/pkg/tensorleapapi/model_slim_visualization.go index ff775532..3155008f 100644 --- a/pkg/tensorleapapi/model_slim_visualization.go +++ b/pkg/tensorleapapi/model_slim_visualization.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_split_agg.go b/pkg/tensorleapapi/model_split_agg.go index ff7ecfc9..6dca1b65 100644 --- a/pkg/tensorleapapi/model_split_agg.go +++ b/pkg/tensorleapapi/model_split_agg.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_split_value.go b/pkg/tensorleapapi/model_split_value.go index 6c59e91b..de8425d0 100644 --- a/pkg/tensorleapapi/model_split_value.go +++ b/pkg/tensorleapapi/model_split_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_start_trial_params.go b/pkg/tensorleapapi/model_start_trial_params.go index dec7256d..f2bed957 100644 --- a/pkg/tensorleapapi/model_start_trial_params.go +++ b/pkg/tensorleapapi/model_start_trial_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_status_enum.go b/pkg/tensorleapapi/model_status_enum.go index 653c6f65..35fc6718 100644 --- a/pkg/tensorleapapi/model_status_enum.go +++ b/pkg/tensorleapapi/model_status_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_stop_job_params.go b/pkg/tensorleapapi/model_stop_job_params.go index b2a50f60..c4694d8d 100644 --- a/pkg/tensorleapapi/model_stop_job_params.go +++ b/pkg/tensorleapapi/model_stop_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_stop_job_response.go b/pkg/tensorleapapi/model_stop_job_response.go index e8f55421..21b86af2 100644 --- a/pkg/tensorleapapi/model_stop_job_response.go +++ b/pkg/tensorleapapi/model_stop_job_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_string_schema.go b/pkg/tensorleapapi/model_string_schema.go index 18112643..63233309 100644 --- a/pkg/tensorleapapi/model_string_schema.go +++ b/pkg/tensorleapapi/model_string_schema.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_synthetic_data.go b/pkg/tensorleapapi/model_synthetic_data.go index 1d201662..2bd5cc74 100644 --- a/pkg/tensorleapapi/model_synthetic_data.go +++ b/pkg/tensorleapapi/model_synthetic_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_synthetic_data_job_params.go b/pkg/tensorleapapi/model_synthetic_data_job_params.go index db9cf34a..c2f4b285 100644 --- a/pkg/tensorleapapi/model_synthetic_data_job_params.go +++ b/pkg/tensorleapapi/model_synthetic_data_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_synthetic_data_job_params_sources_inner.go b/pkg/tensorleapapi/model_synthetic_data_job_params_sources_inner.go index 9ed7d072..332b5f07 100644 --- a/pkg/tensorleapapi/model_synthetic_data_job_params_sources_inner.go +++ b/pkg/tensorleapapi/model_synthetic_data_job_params_sources_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_synthetic_data_response.go b/pkg/tensorleapapi/model_synthetic_data_response.go index ee5387a7..a0a1ff5e 100644 --- a/pkg/tensorleapapi/model_synthetic_data_response.go +++ b/pkg/tensorleapapi/model_synthetic_data_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_tag_model_request.go b/pkg/tensorleapapi/model_tag_model_request.go index 0bf7b4ff..30a5b485 100644 --- a/pkg/tensorleapapi/model_tag_model_request.go +++ b/pkg/tensorleapapi/model_tag_model_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_terminate_all_jobs_params.go b/pkg/tensorleapapi/model_terminate_all_jobs_params.go index 85a6e58f..1a37f1ef 100644 --- a/pkg/tensorleapapi/model_terminate_all_jobs_params.go +++ b/pkg/tensorleapapi/model_terminate_all_jobs_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_terminate_all_jobs_response.go b/pkg/tensorleapapi/model_terminate_all_jobs_response.go index 5fae8b51..f4e1210a 100644 --- a/pkg/tensorleapapi/model_terminate_all_jobs_response.go +++ b/pkg/tensorleapapi/model_terminate_all_jobs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_terminate_job_params.go b/pkg/tensorleapapi/model_terminate_job_params.go index beee2239..460996c6 100644 --- a/pkg/tensorleapapi/model_terminate_job_params.go +++ b/pkg/tensorleapapi/model_terminate_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_terminate_job_response.go b/pkg/tensorleapapi/model_terminate_job_response.go index 2f722ec2..e3abbc11 100644 --- a/pkg/tensorleapapi/model_terminate_job_response.go +++ b/pkg/tensorleapapi/model_terminate_job_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_test_filter_operator_type.go b/pkg/tensorleapapi/model_test_filter_operator_type.go index f7da5d2f..e44701a6 100644 --- a/pkg/tensorleapapi/model_test_filter_operator_type.go +++ b/pkg/tensorleapapi/model_test_filter_operator_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_test_status.go b/pkg/tensorleapapi/model_test_status.go index 86c5a86a..82c734d7 100644 --- a/pkg/tensorleapapi/model_test_status.go +++ b/pkg/tensorleapapi/model_test_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_text_data.go b/pkg/tensorleapapi/model_text_data.go index af05e579..fd58b040 100644 --- a/pkg/tensorleapapi/model_text_data.go +++ b/pkg/tensorleapapi/model_text_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_text_viz.go b/pkg/tensorleapapi/model_text_viz.go index 8064611d..91f23a73 100644 --- a/pkg/tensorleapapi/model_text_viz.go +++ b/pkg/tensorleapapi/model_text_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_trash_secret_manager_params.go b/pkg/tensorleapapi/model_trash_secret_manager_params.go index 2adf7c3f..f40a9092 100644 --- a/pkg/tensorleapapi/model_trash_secret_manager_params.go +++ b/pkg/tensorleapapi/model_trash_secret_manager_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_trash_secret_manager_response.go b/pkg/tensorleapapi/model_trash_secret_manager_response.go index fa78a1c3..6cf6edfc 100644 --- a/pkg/tensorleapapi/model_trash_secret_manager_response.go +++ b/pkg/tensorleapapi/model_trash_secret_manager_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_action.go b/pkg/tensorleapapi/model_update_action.go index 8cddb71e..8c3ef567 100644 --- a/pkg/tensorleapapi/model_update_action.go +++ b/pkg/tensorleapapi/model_update_action.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,16 +20,18 @@ type UpdateAction string // List of UpdateAction const ( - UPDATEACTION_UPDATE_METADATA UpdateAction = "update_metadata" - UPDATEACTION_UPDATE_METRIC UpdateAction = "update_metric" - UPDATEACTION_UPDATE_VISUALIZATION UpdateAction = "update_visualization" - UPDATEACTION_UPDATE_INSIGHTS UpdateAction = "update_insights" + UPDATEACTION_UPDATE_METADATA UpdateAction = "update_metadata" + UPDATEACTION_UPDATE_METRIC UpdateAction = "update_metric" + UPDATEACTION_UPDATE_METRIC_DIRECTION UpdateAction = "update_metric_direction" + UPDATEACTION_UPDATE_VISUALIZATION UpdateAction = "update_visualization" + UPDATEACTION_UPDATE_INSIGHTS UpdateAction = "update_insights" ) // All allowed values of UpdateAction enum var AllowedUpdateActionEnumValues = []UpdateAction{ "update_metadata", "update_metric", + "update_metric_direction", "update_visualization", "update_insights", } diff --git a/pkg/tensorleapapi/model_update_dashboard_params.go b/pkg/tensorleapapi/model_update_dashboard_params.go index 0a4e7991..a0c9be5f 100644 --- a/pkg/tensorleapapi/model_update_dashboard_params.go +++ b/pkg/tensorleapapi/model_update_dashboard_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_evaluate_artifact_params.go b/pkg/tensorleapapi/model_update_evaluate_artifact_params.go index b9da91f7..887d9fcf 100644 --- a/pkg/tensorleapapi/model_update_evaluate_artifact_params.go +++ b/pkg/tensorleapapi/model_update_evaluate_artifact_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_insight_description_params.go b/pkg/tensorleapapi/model_update_insight_description_params.go new file mode 100644 index 00000000..004b2916 --- /dev/null +++ b/pkg/tensorleapapi/model_update_insight_description_params.go @@ -0,0 +1,232 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.81 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the UpdateInsightDescriptionParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &UpdateInsightDescriptionParams{} + +// UpdateInsightDescriptionParams struct for UpdateInsightDescriptionParams +type UpdateInsightDescriptionParams struct { + InsightId string `json:"insightId"` + ProjectId string `json:"projectId"` + Description *string `json:"description,omitempty"` + AdditionalProperties map[string]interface{} +} + +type _UpdateInsightDescriptionParams UpdateInsightDescriptionParams + +// NewUpdateInsightDescriptionParams instantiates a new UpdateInsightDescriptionParams object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewUpdateInsightDescriptionParams(insightId string, projectId string) *UpdateInsightDescriptionParams { + this := UpdateInsightDescriptionParams{} + this.InsightId = insightId + this.ProjectId = projectId + return &this +} + +// NewUpdateInsightDescriptionParamsWithDefaults instantiates a new UpdateInsightDescriptionParams object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewUpdateInsightDescriptionParamsWithDefaults() *UpdateInsightDescriptionParams { + this := UpdateInsightDescriptionParams{} + return &this +} + +// GetInsightId returns the InsightId field value +func (o *UpdateInsightDescriptionParams) GetInsightId() string { + if o == nil { + var ret string + return ret + } + + return o.InsightId +} + +// GetInsightIdOk returns a tuple with the InsightId field value +// and a boolean to check if the value has been set. +func (o *UpdateInsightDescriptionParams) GetInsightIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.InsightId, true +} + +// SetInsightId sets field value +func (o *UpdateInsightDescriptionParams) SetInsightId(v string) { + o.InsightId = v +} + +// GetProjectId returns the ProjectId field value +func (o *UpdateInsightDescriptionParams) GetProjectId() string { + if o == nil { + var ret string + return ret + } + + return o.ProjectId +} + +// GetProjectIdOk returns a tuple with the ProjectId field value +// and a boolean to check if the value has been set. +func (o *UpdateInsightDescriptionParams) GetProjectIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ProjectId, true +} + +// SetProjectId sets field value +func (o *UpdateInsightDescriptionParams) SetProjectId(v string) { + o.ProjectId = v +} + +// GetDescription returns the Description field value if set, zero value otherwise. +func (o *UpdateInsightDescriptionParams) GetDescription() string { + if o == nil || IsNil(o.Description) { + var ret string + return ret + } + return *o.Description +} + +// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *UpdateInsightDescriptionParams) GetDescriptionOk() (*string, bool) { + if o == nil || IsNil(o.Description) { + return nil, false + } + return o.Description, true +} + +// HasDescription returns a boolean if a field has been set. +func (o *UpdateInsightDescriptionParams) HasDescription() bool { + if o != nil && !IsNil(o.Description) { + return true + } + + return false +} + +// SetDescription gets a reference to the given string and assigns it to the Description field. +func (o *UpdateInsightDescriptionParams) SetDescription(v string) { + o.Description = &v +} + +func (o UpdateInsightDescriptionParams) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o UpdateInsightDescriptionParams) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["insightId"] = o.InsightId + toSerialize["projectId"] = o.ProjectId + if !IsNil(o.Description) { + toSerialize["description"] = o.Description + } + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *UpdateInsightDescriptionParams) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "insightId", + "projectId", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varUpdateInsightDescriptionParams := _UpdateInsightDescriptionParams{} + + err = json.Unmarshal(data, &varUpdateInsightDescriptionParams) + + if err != nil { + return err + } + + *o = UpdateInsightDescriptionParams(varUpdateInsightDescriptionParams) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "insightId") + delete(additionalProperties, "projectId") + delete(additionalProperties, "description") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableUpdateInsightDescriptionParams struct { + value *UpdateInsightDescriptionParams + isSet bool +} + +func (v NullableUpdateInsightDescriptionParams) Get() *UpdateInsightDescriptionParams { + return v.value +} + +func (v *NullableUpdateInsightDescriptionParams) Set(val *UpdateInsightDescriptionParams) { + v.value = val + v.isSet = true +} + +func (v NullableUpdateInsightDescriptionParams) IsSet() bool { + return v.isSet +} + +func (v *NullableUpdateInsightDescriptionParams) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableUpdateInsightDescriptionParams(val *UpdateInsightDescriptionParams) *NullableUpdateInsightDescriptionParams { + return &NullableUpdateInsightDescriptionParams{value: val, isSet: true} +} + +func (v NullableUpdateInsightDescriptionParams) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableUpdateInsightDescriptionParams) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_update_issue_params.go b/pkg/tensorleapapi/model_update_issue_params.go index 9fd24781..db862e47 100644 --- a/pkg/tensorleapapi/model_update_issue_params.go +++ b/pkg/tensorleapapi/model_update_issue_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_project_meta_request.go b/pkg/tensorleapapi/model_update_project_meta_request.go index d6d49a27..300dd5f4 100644 --- a/pkg/tensorleapapi/model_update_project_meta_request.go +++ b/pkg/tensorleapapi/model_update_project_meta_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_sample_collection_params.go b/pkg/tensorleapapi/model_update_sample_collection_params.go index e1a1781e..c6caa0ad 100644 --- a/pkg/tensorleapapi/model_update_sample_collection_params.go +++ b/pkg/tensorleapapi/model_update_sample_collection_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,11 +20,14 @@ var _ MappedNullable = &UpdateSampleCollectionParams{} // UpdateSampleCollectionParams struct for UpdateSampleCollectionParams type UpdateSampleCollectionParams struct { - Samples []SampleIdentity `json:"samples,omitempty"` - Description *string `json:"description,omitempty"` - Name *string `json:"name,omitempty"` - SampleCollectionId string `json:"sampleCollectionId"` - ProjectId string `json:"projectId"` + Included []SampleIdentity `json:"included,omitempty"` + Excluded []SampleIdentity `json:"excluded,omitempty"` + Filters []CollectionFilterSpec `json:"filters,omitempty"` + VersionId *string `json:"versionId,omitempty"` + Description *string `json:"description,omitempty"` + Name *string `json:"name,omitempty"` + SampleCollectionId string `json:"sampleCollectionId"` + ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } @@ -49,36 +52,132 @@ func NewUpdateSampleCollectionParamsWithDefaults() *UpdateSampleCollectionParams return &this } -// GetSamples returns the Samples field value if set, zero value otherwise. -func (o *UpdateSampleCollectionParams) GetSamples() []SampleIdentity { - if o == nil || IsNil(o.Samples) { +// GetIncluded returns the Included field value if set, zero value otherwise. +func (o *UpdateSampleCollectionParams) GetIncluded() []SampleIdentity { + if o == nil || IsNil(o.Included) { var ret []SampleIdentity return ret } - return o.Samples + return o.Included } -// GetSamplesOk returns a tuple with the Samples field value if set, nil otherwise +// GetIncludedOk returns a tuple with the Included field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *UpdateSampleCollectionParams) GetSamplesOk() ([]SampleIdentity, bool) { - if o == nil || IsNil(o.Samples) { +func (o *UpdateSampleCollectionParams) GetIncludedOk() ([]SampleIdentity, bool) { + if o == nil || IsNil(o.Included) { return nil, false } - return o.Samples, true + return o.Included, true } -// HasSamples returns a boolean if a field has been set. -func (o *UpdateSampleCollectionParams) HasSamples() bool { - if o != nil && !IsNil(o.Samples) { +// HasIncluded returns a boolean if a field has been set. +func (o *UpdateSampleCollectionParams) HasIncluded() bool { + if o != nil && !IsNil(o.Included) { return true } return false } -// SetSamples gets a reference to the given []SampleIdentity and assigns it to the Samples field. -func (o *UpdateSampleCollectionParams) SetSamples(v []SampleIdentity) { - o.Samples = v +// SetIncluded gets a reference to the given []SampleIdentity and assigns it to the Included field. +func (o *UpdateSampleCollectionParams) SetIncluded(v []SampleIdentity) { + o.Included = v +} + +// GetExcluded returns the Excluded field value if set, zero value otherwise. +func (o *UpdateSampleCollectionParams) GetExcluded() []SampleIdentity { + if o == nil || IsNil(o.Excluded) { + var ret []SampleIdentity + return ret + } + return o.Excluded +} + +// GetExcludedOk returns a tuple with the Excluded field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *UpdateSampleCollectionParams) GetExcludedOk() ([]SampleIdentity, bool) { + if o == nil || IsNil(o.Excluded) { + return nil, false + } + return o.Excluded, true +} + +// HasExcluded returns a boolean if a field has been set. +func (o *UpdateSampleCollectionParams) HasExcluded() bool { + if o != nil && !IsNil(o.Excluded) { + return true + } + + return false +} + +// SetExcluded gets a reference to the given []SampleIdentity and assigns it to the Excluded field. +func (o *UpdateSampleCollectionParams) SetExcluded(v []SampleIdentity) { + o.Excluded = v +} + +// GetFilters returns the Filters field value if set, zero value otherwise. +func (o *UpdateSampleCollectionParams) GetFilters() []CollectionFilterSpec { + if o == nil || IsNil(o.Filters) { + var ret []CollectionFilterSpec + return ret + } + return o.Filters +} + +// GetFiltersOk returns a tuple with the Filters field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *UpdateSampleCollectionParams) GetFiltersOk() ([]CollectionFilterSpec, bool) { + if o == nil || IsNil(o.Filters) { + return nil, false + } + return o.Filters, true +} + +// HasFilters returns a boolean if a field has been set. +func (o *UpdateSampleCollectionParams) HasFilters() bool { + if o != nil && !IsNil(o.Filters) { + return true + } + + return false +} + +// SetFilters gets a reference to the given []CollectionFilterSpec and assigns it to the Filters field. +func (o *UpdateSampleCollectionParams) SetFilters(v []CollectionFilterSpec) { + o.Filters = v +} + +// GetVersionId returns the VersionId field value if set, zero value otherwise. +func (o *UpdateSampleCollectionParams) GetVersionId() string { + if o == nil || IsNil(o.VersionId) { + var ret string + return ret + } + return *o.VersionId +} + +// GetVersionIdOk returns a tuple with the VersionId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *UpdateSampleCollectionParams) GetVersionIdOk() (*string, bool) { + if o == nil || IsNil(o.VersionId) { + return nil, false + } + return o.VersionId, true +} + +// HasVersionId returns a boolean if a field has been set. +func (o *UpdateSampleCollectionParams) HasVersionId() bool { + if o != nil && !IsNil(o.VersionId) { + return true + } + + return false +} + +// SetVersionId gets a reference to the given string and assigns it to the VersionId field. +func (o *UpdateSampleCollectionParams) SetVersionId(v string) { + o.VersionId = &v } // GetDescription returns the Description field value if set, zero value otherwise. @@ -203,8 +302,17 @@ func (o UpdateSampleCollectionParams) MarshalJSON() ([]byte, error) { func (o UpdateSampleCollectionParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - if !IsNil(o.Samples) { - toSerialize["samples"] = o.Samples + if !IsNil(o.Included) { + toSerialize["included"] = o.Included + } + if !IsNil(o.Excluded) { + toSerialize["excluded"] = o.Excluded + } + if !IsNil(o.Filters) { + toSerialize["filters"] = o.Filters + } + if !IsNil(o.VersionId) { + toSerialize["versionId"] = o.VersionId } if !IsNil(o.Description) { toSerialize["description"] = o.Description @@ -258,7 +366,10 @@ func (o *UpdateSampleCollectionParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "samples") + delete(additionalProperties, "included") + delete(additionalProperties, "excluded") + delete(additionalProperties, "filters") + delete(additionalProperties, "versionId") delete(additionalProperties, "description") delete(additionalProperties, "name") delete(additionalProperties, "sampleCollectionId") diff --git a/pkg/tensorleapapi/model_update_sample_collection_response.go b/pkg/tensorleapapi/model_update_sample_collection_response.go index 7c5b1391..12ab9ad8 100644 --- a/pkg/tensorleapapi/model_update_sample_collection_response.go +++ b/pkg/tensorleapapi/model_update_sample_collection_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_secret_manager_params.go b/pkg/tensorleapapi/model_update_secret_manager_params.go index 8239018e..127c7aa5 100644 --- a/pkg/tensorleapapi/model_update_secret_manager_params.go +++ b/pkg/tensorleapapi/model_update_secret_manager_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_secret_manager_response.go b/pkg/tensorleapapi/model_update_secret_manager_response.go index 6d0aed99..041bd01a 100644 --- a/pkg/tensorleapapi/model_update_secret_manager_response.go +++ b/pkg/tensorleapapi/model_update_secret_manager_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_session_test_request.go b/pkg/tensorleapapi/model_update_session_test_request.go index e65bcaaa..5cd02bb9 100644 --- a/pkg/tensorleapapi/model_update_session_test_request.go +++ b/pkg/tensorleapapi/model_update_session_test_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -25,6 +25,7 @@ type UpdateSessionTestRequest struct { Name *string `json:"name,omitempty"` TestFilter *ClientFilterParams `json:"testFilter,omitempty"` DatasetFilter []ESFilter `json:"datasetFilter,omitempty"` + Description *string `json:"description,omitempty"` AdditionalProperties map[string]interface{} } @@ -193,6 +194,38 @@ func (o *UpdateSessionTestRequest) SetDatasetFilter(v []ESFilter) { o.DatasetFilter = v } +// GetDescription returns the Description field value if set, zero value otherwise. +func (o *UpdateSessionTestRequest) GetDescription() string { + if o == nil || IsNil(o.Description) { + var ret string + return ret + } + return *o.Description +} + +// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *UpdateSessionTestRequest) GetDescriptionOk() (*string, bool) { + if o == nil || IsNil(o.Description) { + return nil, false + } + return o.Description, true +} + +// HasDescription returns a boolean if a field has been set. +func (o *UpdateSessionTestRequest) HasDescription() bool { + if o != nil && !IsNil(o.Description) { + return true + } + + return false +} + +// SetDescription gets a reference to the given string and assigns it to the Description field. +func (o *UpdateSessionTestRequest) SetDescription(v string) { + o.Description = &v +} + func (o UpdateSessionTestRequest) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -214,6 +247,9 @@ func (o UpdateSessionTestRequest) ToMap() (map[string]interface{}, error) { if !IsNil(o.DatasetFilter) { toSerialize["datasetFilter"] = o.DatasetFilter } + if !IsNil(o.Description) { + toSerialize["description"] = o.Description + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -263,6 +299,7 @@ func (o *UpdateSessionTestRequest) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "name") delete(additionalProperties, "testFilter") delete(additionalProperties, "datasetFilter") + delete(additionalProperties, "description") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_update_team_public_name_request.go b/pkg/tensorleapapi/model_update_team_public_name_request.go index 609076bd..e38f0303 100644 --- a/pkg/tensorleapapi/model_update_team_public_name_request.go +++ b/pkg/tensorleapapi/model_update_team_public_name_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_user_name_request.go b/pkg/tensorleapapi/model_update_user_name_request.go index 32cb0290..ddbae4bd 100644 --- a/pkg/tensorleapapi/model_update_user_name_request.go +++ b/pkg/tensorleapapi/model_update_user_name_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_user_role_request.go b/pkg/tensorleapapi/model_update_user_role_request.go index 7adebde3..00fc5e83 100644 --- a/pkg/tensorleapapi/model_update_user_role_request.go +++ b/pkg/tensorleapapi/model_update_user_role_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_user_status_request.go b/pkg/tensorleapapi/model_update_user_status_request.go index 32c131c1..29609e1b 100644 --- a/pkg/tensorleapapi/model_update_user_status_request.go +++ b/pkg/tensorleapapi/model_update_user_status_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_user_team_request.go b/pkg/tensorleapapi/model_update_user_team_request.go index 9f75a440..79a851d3 100644 --- a/pkg/tensorleapapi/model_update_user_team_request.go +++ b/pkg/tensorleapapi/model_update_user_team_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_version_params.go b/pkg/tensorleapapi/model_update_version_params.go index a25ac0af..7e2abfae 100644 --- a/pkg/tensorleapapi/model_update_version_params.go +++ b/pkg/tensorleapapi/model_update_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_version_response.go b/pkg/tensorleapapi/model_update_version_response.go index 5dc3e899..29c2ed7a 100644 --- a/pkg/tensorleapapi/model_update_version_response.go +++ b/pkg/tensorleapapi/model_update_version_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_upload_model_file_type.go b/pkg/tensorleapapi/model_upload_model_file_type.go index 2d2a789e..578b027b 100644 --- a/pkg/tensorleapapi/model_upload_model_file_type.go +++ b/pkg/tensorleapapi/model_upload_model_file_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_uploaded_model.go b/pkg/tensorleapapi/model_uploaded_model.go index 40f9d84f..a075d43e 100644 --- a/pkg/tensorleapapi/model_uploaded_model.go +++ b/pkg/tensorleapapi/model_uploaded_model.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_upsert_state_params.go b/pkg/tensorleapapi/model_upsert_state_params.go index 207eb1ce..848e3057 100644 --- a/pkg/tensorleapapi/model_upsert_state_params.go +++ b/pkg/tensorleapapi/model_upsert_state_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_upsert_state_response.go b/pkg/tensorleapapi/model_upsert_state_response.go index e3f3c716..936590ed 100644 --- a/pkg/tensorleapapi/model_upsert_state_response.go +++ b/pkg/tensorleapapi/model_upsert_state_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_user_data.go b/pkg/tensorleapapi/model_user_data.go index eca78d14..142193a7 100644 --- a/pkg/tensorleapapi/model_user_data.go +++ b/pkg/tensorleapapi/model_user_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_user_data_local.go b/pkg/tensorleapapi/model_user_data_local.go index b5c1b786..90862ff1 100644 --- a/pkg/tensorleapapi/model_user_data_local.go +++ b/pkg/tensorleapapi/model_user_data_local.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_user_data_metadata.go b/pkg/tensorleapapi/model_user_data_metadata.go index e7c2951c..046bfaef 100644 --- a/pkg/tensorleapapi/model_user_data_metadata.go +++ b/pkg/tensorleapapi/model_user_data_metadata.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_user_role.go b/pkg/tensorleapapi/model_user_role.go index 124486d3..a0223ac2 100644 --- a/pkg/tensorleapapi/model_user_role.go +++ b/pkg/tensorleapapi/model_user_role.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_validated_loss_node.go b/pkg/tensorleapapi/model_validated_loss_node.go index 232bdbfb..293f5e5d 100644 --- a/pkg/tensorleapapi/model_validated_loss_node.go +++ b/pkg/tensorleapapi/model_validated_loss_node.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_validated_node.go b/pkg/tensorleapapi/model_validated_node.go index 64f06cf4..19a10a97 100644 --- a/pkg/tensorleapapi/model_validated_node.go +++ b/pkg/tensorleapapi/model_validated_node.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_value_with_key.go b/pkg/tensorleapapi/model_value_with_key.go index 2b3475e1..14c54487 100644 --- a/pkg/tensorleapapi/model_value_with_key.go +++ b/pkg/tensorleapapi/model_value_with_key.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_version.go b/pkg/tensorleapapi/model_version.go index 713454c3..27870de2 100644 --- a/pkg/tensorleapapi/model_version.go +++ b/pkg/tensorleapapi/model_version.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_version_evaluate_params.go b/pkg/tensorleapapi/model_version_evaluate_params.go index a9471c51..b0d1fee0 100644 --- a/pkg/tensorleapapi/model_version_evaluate_params.go +++ b/pkg/tensorleapapi/model_version_evaluate_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_version_populated_job.go b/pkg/tensorleapapi/model_version_populated_job.go index ac375aaf..13599ec0 100644 --- a/pkg/tensorleapapi/model_version_populated_job.go +++ b/pkg/tensorleapapi/model_version_populated_job.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_version_resources.go b/pkg/tensorleapapi/model_version_resources.go index 93c5a471..a779d316 100644 --- a/pkg/tensorleapapi/model_version_resources.go +++ b/pkg/tensorleapapi/model_version_resources.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_version_status.go b/pkg/tensorleapapi/model_version_status.go index 16d9c6b5..d05f2bac 100644 --- a/pkg/tensorleapapi/model_version_status.go +++ b/pkg/tensorleapapi/model_version_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_video_data.go b/pkg/tensorleapapi/model_video_data.go index 27374fb3..0fce0205 100644 --- a/pkg/tensorleapapi/model_video_data.go +++ b/pkg/tensorleapapi/model_video_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_video_heatmap_data.go b/pkg/tensorleapapi/model_video_heatmap_data.go index ffe86cc4..38077ae7 100644 --- a/pkg/tensorleapapi/model_video_heatmap_data.go +++ b/pkg/tensorleapapi/model_video_heatmap_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_vis_artifact_resources.go b/pkg/tensorleapapi/model_vis_artifact_resources.go index 8fb35a69..ef846916 100644 --- a/pkg/tensorleapapi/model_vis_artifact_resources.go +++ b/pkg/tensorleapapi/model_vis_artifact_resources.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_vis_data.go b/pkg/tensorleapapi/model_vis_data.go index 9c3cb9d7..2a8d1907 100644 --- a/pkg/tensorleapapi/model_vis_data.go +++ b/pkg/tensorleapapi/model_vis_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualization.go b/pkg/tensorleapapi/model_visualization.go index 6c96953b..5b23b3df 100644 --- a/pkg/tensorleapapi/model_visualization.go +++ b/pkg/tensorleapapi/model_visualization.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualization_data.go b/pkg/tensorleapapi/model_visualization_data.go index 5bf1fa31..170225a6 100644 --- a/pkg/tensorleapapi/model_visualization_data.go +++ b/pkg/tensorleapapi/model_visualization_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualization_response.go b/pkg/tensorleapapi/model_visualization_response.go index eac3984e..ea16faa0 100644 --- a/pkg/tensorleapapi/model_visualization_response.go +++ b/pkg/tensorleapapi/model_visualization_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualized_item.go b/pkg/tensorleapapi/model_visualized_item.go index 10324d2e..8265c9f0 100644 --- a/pkg/tensorleapapi/model_visualized_item.go +++ b/pkg/tensorleapapi/model_visualized_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualized_item_data.go b/pkg/tensorleapapi/model_visualized_item_data.go index 79e844d7..2e07c028 100644 --- a/pkg/tensorleapapi/model_visualized_item_data.go +++ b/pkg/tensorleapapi/model_visualized_item_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualizer_instance.go b/pkg/tensorleapapi/model_visualizer_instance.go index bc9b56d4..3239e9fa 100644 --- a/pkg/tensorleapapi/model_visualizer_instance.go +++ b/pkg/tensorleapapi/model_visualizer_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualizer_message_params.go b/pkg/tensorleapapi/model_visualizer_message_params.go index 0f88548c..1d544bf2 100644 --- a/pkg/tensorleapapi/model_visualizer_message_params.go +++ b/pkg/tensorleapapi/model_visualizer_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_viz_info_type.go b/pkg/tensorleapapi/model_viz_info_type.go index fa018adb..6fcb2a6a 100644 --- a/pkg/tensorleapapi/model_viz_info_type.go +++ b/pkg/tensorleapapi/model_viz_info_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_viz_type.go b/pkg/tensorleapapi/model_viz_type.go index 8447499b..56131256 100644 --- a/pkg/tensorleapapi/model_viz_type.go +++ b/pkg/tensorleapapi/model_viz_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/response.go b/pkg/tensorleapapi/response.go index 18c0fc52..91c6fa41 100644 --- a/pkg/tensorleapapi/response.go +++ b/pkg/tensorleapapi/response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/test/api_default_test.go b/pkg/tensorleapapi/test/api_default_test.go index d3054780..853ca763 100644 --- a/pkg/tensorleapapi/test/api_default_test.go +++ b/pkg/tensorleapapi/test/api_default_test.go @@ -1779,6 +1779,18 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) + t.Run("Test DefaultAPIService SetVersionUpdateActions", func(t *testing.T) { + + t.Skip("skip test") // remove to run test + + resp, httpRes, err := apiClient.DefaultAPI.SetVersionUpdateActions(context.Background()).Execute() + + require.Nil(t, err) + require.NotNil(t, resp) + assert.Equal(t, 200, httpRes.StatusCode) + + }) + t.Run("Test DefaultAPIService StartTrial", func(t *testing.T) { t.Skip("skip test") // remove to run test @@ -1884,6 +1896,17 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) + t.Run("Test DefaultAPIService UpdateInsightDescription", func(t *testing.T) { + + t.Skip("skip test") // remove to run test + + httpRes, err := apiClient.DefaultAPI.UpdateInsightDescription(context.Background()).Execute() + + require.Nil(t, err) + assert.Equal(t, 200, httpRes.StatusCode) + + }) + t.Run("Test DefaultAPIService UpdateIssue", func(t *testing.T) { t.Skip("skip test") // remove to run test diff --git a/pkg/tensorleapapi/utils.go b/pkg/tensorleapapi/utils.go index 21f921e4..4f0421ec 100644 --- a/pkg/tensorleapapi/utils.go +++ b/pkg/tensorleapapi/utils.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.66 +API version: 11.0.81 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.