You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cosmotech_api/models/workspace_solution.py
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -31,9 +31,7 @@ class WorkspaceSolution(BaseModel):
31
31
solution_id: Annotated[str, Field(strict=True)] =Field(description="The Solution Id attached to this workspace", alias="solutionId")
32
32
dataset_id: Optional[Annotated[str, Field(strict=True)]] =Field(default=None, description="The Dataset Id attached to this workspace. This dataset will be used to store default values for Solution parameters with file's varType. ", alias="datasetId")
33
33
default_parameter_values: Optional[Dict[str, StrictStr]] =Field(default=None, description="A map of parameterId/value to set default values for Solution parameters with simple varType (int, string, ...)", alias="defaultParameterValues")
34
-
run_template_filter: Optional[List[StrictStr]] =Field(default=None, description="The list of Solution Run Template Id to filter", alias="runTemplateFilter")
35
-
default_run_template_dataset: Optional[Dict[str, Any]] =Field(default=None, description="A map of RunTemplateId/DatasetId to set a default dataset for a Run Template", alias="defaultRunTemplateDataset")
Copy file name to clipboardExpand all lines: docs/WorkspaceSolution.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,6 @@ Name | Type | Description | Notes
9
9
**solution_id** | **str** | The Solution Id attached to this workspace |
10
10
**dataset_id** | **str** | The Dataset Id attached to this workspace. This dataset will be used to store default values for Solution parameters with file's varType. | [optional]
11
11
**default_parameter_values** | **Dict[str, str]** | A map of parameterId/value to set default values for Solution parameters with simple varType (int, string, ...) | [optional]
12
-
**run_template_filter** | **List[str]** | The list of Solution Run Template Id to filter | [optional]
13
-
**default_run_template_dataset** | **Dict[str, object]** | A map of RunTemplateId/DatasetId to set a default dataset for a Run Template | [optional]
0 commit comments