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
@Parameter(description = "A namespace filter prefix", deprecated = true) @Nullable@QueryValueStringnamespace,
55
+
@Parameter(description = "A flow id filter",deprecated = true) @Nullable@QueryValueStringflowId,
56
+
@Parameter(description = "The start datetime",deprecated = true) @Nullable@Format("yyyy-MM-dd'T'HH:mm[:ss][.SSS][XXX]") @QueryValueZonedDateTimestartDate,
57
+
@Parameter(description = "The end datetime", deprecated = true) @Nullable@Format("yyyy-MM-dd'T'HH:mm[:ss][.SSS][XXX]") @QueryValueZonedDateTimeendDate,
58
+
@Parameter(description = "A time range filter relative to the current time", deprecated = true, examples = {
58
59
@ExampleObject(name = "Filter last 5 minutes", value = "PT5M"),
59
60
@ExampleObject(name = "Filter last 24 hours", value = "P1D")
60
61
}) @Nullable@QueryValueDurationtimeRange,
61
-
@Parameter(description = "A state filter") @Nullable@QueryValueList<State.Type> state,
62
-
@Parameter(description = "A labels filter as a list of 'key:value'") @Nullable@QueryValue@Format("MULTI") List<String> labels,
63
-
@Parameter(description = "The trigger execution id") @Nullable@QueryValueStringtriggerExecutionId,
64
-
@Parameter(description = "A execution child filter") @Nullable@QueryValueExecutionRepositoryInterface.ChildFilterchildFilter
62
+
@Parameter(description = "A state filter",deprecated = true) @Nullable@QueryValueList<State.Type> state,
63
+
@Parameter(description = "A labels filter as a list of 'key:value'", deprecated = true) @Nullable@QueryValue@Format("MULTI") List<String> labels,
64
+
@Parameter(description = "The trigger execution id",deprecated = true) @Nullable@QueryValueStringtriggerExecutionId,
65
+
@Parameter(description = "A execution child filter", deprecated = true) @Nullable@QueryValueExecutionRepositoryInterface.ChildFilterchildFilter
65
66
66
67
) throwsHttpStatusException {
67
68
@@ -84,15 +85,15 @@ public PagedResults<TaskRun> findTaskRun(
0 commit comments