We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c814452 commit 836520cCopy full SHA for 836520c
google/cloud/aiplatform/metadata/experiment_resources.py
@@ -319,6 +319,7 @@ def list(
319
project: Optional[str] = None,
320
location: Optional[str] = None,
321
credentials: Optional[auth_credentials.Credentials] = None,
322
+ filter: Optional[str] = None,
323
) -> List["Experiment"]:
324
"""List all Vertex AI Experiments in the given project.
325
@@ -342,7 +343,7 @@ def list(
342
343
344
filter_str = metadata_utils._make_filter_string(
345
schema_title=constants.SYSTEM_EXPERIMENT
- )
346
+ ) + " AND " + filter
347
348
with _SetLoggerLevel(resource):
349
experiment_contexts = context.Context.list(
0 commit comments