File tree 1 file changed +5
-1
lines changed
google/cloud/aiplatform/metadata
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -316,6 +316,7 @@ def get_or_create(
316
316
def list (
317
317
cls ,
318
318
* ,
319
+ filter_str : Optional [str ] = None ,
319
320
project : Optional [str ] = None ,
320
321
location : Optional [str ] = None ,
321
322
credentials : Optional [auth_credentials .Credentials ] = None ,
@@ -327,6 +328,9 @@ def list(
327
328
```
328
329
329
330
Args:
331
+ filter (str):
332
+ Optional. An expression for filtering the results of the request.
333
+ For field names both snake_case and camelCase are supported.
330
334
project (str):
331
335
Optional. Project to list these experiments from. Overrides project set in
332
336
aiplatform.init.
@@ -342,7 +346,7 @@ def list(
342
346
343
347
filter_str = metadata_utils ._make_filter_string (
344
348
schema_title = constants .SYSTEM_EXPERIMENT
345
- )
349
+ ) + " AND " + filter_str
346
350
347
351
with _SetLoggerLevel (resource ):
348
352
experiment_contexts = context .Context .list (
You can’t perform that action at this time.
0 commit comments