@@ -56,6 +56,27 @@ public ApiResponse urlsByUrlRegex(String regex, String baseurl, String start, St
56
56
return api .callApi ("search" , "view" , "urlsByUrlRegex" , map );
57
57
}
58
58
59
+ /**
60
+ * Returns the URLs of the HTTP messages that match the given regular expression in their
61
+ * history Tags optionally filtered by URL and paginated with 'start' position and 'count' of
62
+ * messages.
63
+ */
64
+ public ApiResponse urlsByTagRegex (String regex , String baseurl , String start , String count )
65
+ throws ClientApiException {
66
+ Map <String , String > map = new HashMap <>();
67
+ map .put ("regex" , regex );
68
+ if (baseurl != null ) {
69
+ map .put ("baseurl" , baseurl );
70
+ }
71
+ if (start != null ) {
72
+ map .put ("start" , start );
73
+ }
74
+ if (count != null ) {
75
+ map .put ("count" , count );
76
+ }
77
+ return api .callApi ("search" , "view" , "urlsByTagRegex" , map );
78
+ }
79
+
59
80
/**
60
81
* Returns the URLs of the HTTP messages that match the given regular expression in the request
61
82
* optionally filtered by URL and paginated with 'start' position and 'count' of messages.
@@ -137,6 +158,26 @@ public ApiResponse messagesByUrlRegex(String regex, String baseurl, String start
137
158
return api .callApi ("search" , "view" , "messagesByUrlRegex" , map );
138
159
}
139
160
161
+ /**
162
+ * Returns the HTTP messages that match the given regular expression in their history Tags
163
+ * optionally filtered by URL and paginated with 'start' position and 'count' of messages.
164
+ */
165
+ public ApiResponse messagesByTagRegex (String regex , String baseurl , String start , String count )
166
+ throws ClientApiException {
167
+ Map <String , String > map = new HashMap <>();
168
+ map .put ("regex" , regex );
169
+ if (baseurl != null ) {
170
+ map .put ("baseurl" , baseurl );
171
+ }
172
+ if (start != null ) {
173
+ map .put ("start" , start );
174
+ }
175
+ if (count != null ) {
176
+ map .put ("count" , count );
177
+ }
178
+ return api .callApi ("search" , "view" , "messagesByTagRegex" , map );
179
+ }
180
+
140
181
/**
141
182
* Returns the HTTP messages that match the given regular expression in the request optionally
142
183
* filtered by URL and paginated with 'start' position and 'count' of messages.
@@ -217,6 +258,27 @@ public byte[] harByUrlRegex(String regex, String baseurl, String start, String c
217
258
return api .callApiOther ("search" , "other" , "harByUrlRegex" , map );
218
259
}
219
260
261
+ /**
262
+ * Returns the HTTP messages, in HAR format, that match the given regular expression in their
263
+ * history Tags optionally filtered by URL and paginated with 'start' position and 'count' of
264
+ * messages.
265
+ */
266
+ public byte [] harByTagRegex (String regex , String baseurl , String start , String count )
267
+ throws ClientApiException {
268
+ Map <String , String > map = new HashMap <>();
269
+ map .put ("regex" , regex );
270
+ if (baseurl != null ) {
271
+ map .put ("baseurl" , baseurl );
272
+ }
273
+ if (start != null ) {
274
+ map .put ("start" , start );
275
+ }
276
+ if (count != null ) {
277
+ map .put ("count" , count );
278
+ }
279
+ return api .callApiOther ("search" , "other" , "harByTagRegex" , map );
280
+ }
281
+
220
282
/**
221
283
* Returns the HTTP messages, in HAR format, that match the given regular expression in the
222
284
* request optionally filtered by URL and paginated with 'start' position and 'count' of
0 commit comments