diff --git a/src/zenml/models/v2/core/artifact_version.py b/src/zenml/models/v2/core/artifact_version.py index 83e4ee9d2a..339d38d23d 100644 --- a/src/zenml/models/v2/core/artifact_version.py +++ b/src/zenml/models/v2/core/artifact_version.py @@ -545,10 +545,6 @@ class ArtifactVersionFilter(WorkspaceScopedFilter, TaggableFilter): default=None, description="Filter only artifacts with/without custom names.", ) - user: Optional[Union[UUID, str]] = Field( - default=None, - description="Name/ID of the user that created the artifact version.", - ) model: Optional[Union[UUID, str]] = Field( default=None, description="Name/ID of the model that is associated with this " diff --git a/src/zenml/models/v2/core/run_template.py b/src/zenml/models/v2/core/run_template.py index 90359c443a..45cb074a08 100644 --- a/src/zenml/models/v2/core/run_template.py +++ b/src/zenml/models/v2/core/run_template.py @@ -318,7 +318,6 @@ class RunTemplateFilter(WorkspaceScopedFilter, TaggableFilter): "stack_id", "build_id", "pipeline_id", - "user", "pipeline", "stack", ] diff --git a/src/zenml/models/v2/core/service.py b/src/zenml/models/v2/core/service.py index 2ad9724b20..422e371466 100644 --- a/src/zenml/models/v2/core/service.py +++ b/src/zenml/models/v2/core/service.py @@ -368,13 +368,7 @@ def state(self) -> Optional[ServiceState]: class ServiceFilter(WorkspaceScopedFilter): - """Model to enable advanced filtering of services. - - The Service needs additional scoping. As such the `_scope_user` field - can be set to the user that is doing the filtering. The - `generate_filter()` method of the baseclass is overwritten to include the - scoping. - """ + """Model to enable advanced filtering of services.""" name: Optional[str] = Field( default=None,