@@ -2596,27 +2596,26 @@ public Search setParent(java.lang.String parent) {
2596
2596
* in the requested device brands. Example: `deviceBrand = "Google". * `deviceType`:
2597
2597
* Matches error reports that occurred in the requested device types. Example: `deviceType
2598
2598
* = "PHONE"`. * `errorIssueType`: Matches error reports of the requested types only.
2599
- * Valid candidates: `JAVA_CRASH`, `NATIVE_CRASH`, `ANR`. Example: `errorIssueType =
2600
- * JAVA_CRASH OR errorIssueType = NATIVE_CRASH`. * `errorIssueId`: Matches error reports
2601
- * belonging to the requested error issue ids only. Example: `errorIssueId = 1234 OR
2602
- * errorIssueId = 4567`. * `errorReportId`: Matches error reports with the requested error
2603
- * report id. Example: `errorReportId = 1234 OR errorReportId = 4567`. *
2604
- * `appProcessState`: Matches error reports on the process state of an app, indicating
2605
- * whether an app runs in the foreground (user-visible) or background. Valid candidates:
2606
- * `FOREGROUND`, `BACKGROUND`. Example: `appProcessState = FOREGROUND`. *
2607
- * `isUserPerceived`: Matches error reports that are user-perceived. It is not accompanied
2608
- * by any operators. Example: `isUserPerceived`. ** Supported operators:** * Comparison
2609
- * operators: The only supported comparison operator is equality. The filtered field must
2610
- * appear on the left hand side of the comparison. * Logical Operators: Logical operators
2611
- * `AND` and `OR` can be used to build complex filters following a conjunctive normal form
2612
- * (CNF), i.e., conjunctions of disjunctions. The `OR` operator takes precedence over
2613
- * `AND` so the use of parenthesis is not necessary when building CNF. The `OR` operator
2614
- * is only supported to build disjunctions that apply to the same field, e.g.,
2615
- * `versionCode = 123 OR versionCode = ANR`. The filter expression `versionCode = 123 OR
2616
- * errorIssueType = ANR` is not valid. ** Examples ** Some valid filtering expressions: *
2617
- * `versionCode = 123 AND errorIssueType = ANR` * `versionCode = 123 AND errorIssueType =
2618
- * OR errorIssueType = CRASH` * `versionCode = 123 AND (errorIssueType = OR errorIssueType
2619
- * = CRASH)`
2599
+ * Valid candidates: `CRASH`, `ANR`. Example: `errorIssueType = CRASH OR errorIssueType =
2600
+ * ANR`. * `errorIssueId`: Matches error reports belonging to the requested error issue
2601
+ * ids only. Example: `errorIssueId = 1234 OR errorIssueId = 4567`. * `errorReportId`:
2602
+ * Matches error reports with the requested error report id. Example: `errorReportId =
2603
+ * 1234 OR errorReportId = 4567`. * `appProcessState`: Matches error reports on the
2604
+ * process state of an app, indicating whether an app runs in the foreground (user-
2605
+ * visible) or background. Valid candidates: `FOREGROUND`, `BACKGROUND`. Example:
2606
+ * `appProcessState = FOREGROUND`. * `isUserPerceived`: Matches error reports that are
2607
+ * user-perceived. It is not accompanied by any operators. Example: `isUserPerceived`. **
2608
+ * Supported operators:** * Comparison operators: The only supported comparison operator
2609
+ * is equality. The filtered field must appear on the left hand side of the comparison. *
2610
+ * Logical Operators: Logical operators `AND` and `OR` can be used to build complex
2611
+ * filters following a conjunctive normal form (CNF), i.e., conjunctions of disjunctions.
2612
+ * The `OR` operator takes precedence over `AND` so the use of parenthesis is not
2613
+ * necessary when building CNF. The `OR` operator is only supported to build disjunctions
2614
+ * that apply to the same field, e.g., `versionCode = 123 OR versionCode = ANR`. The
2615
+ * filter expression `versionCode = 123 OR errorIssueType = ANR` is not valid. ** Examples
2616
+ * ** Some valid filtering expressions: * `versionCode = 123 AND errorIssueType = ANR` *
2617
+ * `versionCode = 123 AND errorIssueType = OR errorIssueType = CRASH` * `versionCode = 123
2618
+ * AND (errorIssueType = OR errorIssueType = CRASH)`
2620
2619
*/
2621
2620
@ com .google .api .client .util .Key
2622
2621
private java .lang .String filter ;
@@ -2630,25 +2629,24 @@ reports that occurred in the requested Android versions (specified as the numeri
2630
2629
"google/walleye" OR deviceModel = "google/marlin"`. * `deviceBrand`: Matches error issues that
2631
2630
occurred in the requested device brands. Example: `deviceBrand = "Google". * `deviceType`: Matches
2632
2631
error reports that occurred in the requested device types. Example: `deviceType = "PHONE"`. *
2633
- `errorIssueType`: Matches error reports of the requested types only. Valid candidates:
2634
- `JAVA_CRASH`, `NATIVE_CRASH`, `ANR`. Example: `errorIssueType = JAVA_CRASH OR errorIssueType =
2635
- NATIVE_CRASH`. * `errorIssueId`: Matches error reports belonging to the requested error issue ids
2636
- only. Example: `errorIssueId = 1234 OR errorIssueId = 4567`. * `errorReportId`: Matches error
2637
- reports with the requested error report id. Example: `errorReportId = 1234 OR errorReportId =
2638
- 4567`. * `appProcessState`: Matches error reports on the process state of an app, indicating
2639
- whether an app runs in the foreground (user-visible) or background. Valid candidates: `FOREGROUND`,
2640
- `BACKGROUND`. Example: `appProcessState = FOREGROUND`. * `isUserPerceived`: Matches error reports
2641
- that are user-perceived. It is not accompanied by any operators. Example: `isUserPerceived`. **
2642
- Supported operators:** * Comparison operators: The only supported comparison operator is equality.
2643
- The filtered field must appear on the left hand side of the comparison. * Logical Operators:
2644
- Logical operators `AND` and `OR` can be used to build complex filters following a conjunctive
2645
- normal form (CNF), i.e., conjunctions of disjunctions. The `OR` operator takes precedence over
2646
- `AND` so the use of parenthesis is not necessary when building CNF. The `OR` operator is only
2647
- supported to build disjunctions that apply to the same field, e.g., `versionCode = 123 OR
2648
- versionCode = ANR`. The filter expression `versionCode = 123 OR errorIssueType = ANR` is not valid.
2649
- ** Examples ** Some valid filtering expressions: * `versionCode = 123 AND errorIssueType = ANR` *
2650
- `versionCode = 123 AND errorIssueType = OR errorIssueType = CRASH` * `versionCode = 123 AND
2651
- (errorIssueType = OR errorIssueType = CRASH)`
2632
+ `errorIssueType`: Matches error reports of the requested types only. Valid candidates: `CRASH`,
2633
+ `ANR`. Example: `errorIssueType = CRASH OR errorIssueType = ANR`. * `errorIssueId`: Matches error
2634
+ reports belonging to the requested error issue ids only. Example: `errorIssueId = 1234 OR
2635
+ errorIssueId = 4567`. * `errorReportId`: Matches error reports with the requested error report id.
2636
+ Example: `errorReportId = 1234 OR errorReportId = 4567`. * `appProcessState`: Matches error reports
2637
+ on the process state of an app, indicating whether an app runs in the foreground (user-visible) or
2638
+ background. Valid candidates: `FOREGROUND`, `BACKGROUND`. Example: `appProcessState = FOREGROUND`.
2639
+ * `isUserPerceived`: Matches error reports that are user-perceived. It is not accompanied by any
2640
+ operators. Example: `isUserPerceived`. ** Supported operators:** * Comparison operators: The only
2641
+ supported comparison operator is equality. The filtered field must appear on the left hand side of
2642
+ the comparison. * Logical Operators: Logical operators `AND` and `OR` can be used to build complex
2643
+ filters following a conjunctive normal form (CNF), i.e., conjunctions of disjunctions. The `OR`
2644
+ operator takes precedence over `AND` so the use of parenthesis is not necessary when building CNF.
2645
+ The `OR` operator is only supported to build disjunctions that apply to the same field, e.g.,
2646
+ `versionCode = 123 OR versionCode = ANR`. The filter expression `versionCode = 123 OR
2647
+ errorIssueType = ANR` is not valid. ** Examples ** Some valid filtering expressions: * `versionCode
2648
+ = 123 AND errorIssueType = ANR` * `versionCode = 123 AND errorIssueType = OR errorIssueType =
2649
+ CRASH` * `versionCode = 123 AND (errorIssueType = OR errorIssueType = CRASH)`
2652
2650
*/
2653
2651
public java .lang .String getFilter () {
2654
2652
return filter ;
@@ -2666,27 +2664,26 @@ public java.lang.String getFilter() {
2666
2664
* in the requested device brands. Example: `deviceBrand = "Google". * `deviceType`:
2667
2665
* Matches error reports that occurred in the requested device types. Example: `deviceType
2668
2666
* = "PHONE"`. * `errorIssueType`: Matches error reports of the requested types only.
2669
- * Valid candidates: `JAVA_CRASH`, `NATIVE_CRASH`, `ANR`. Example: `errorIssueType =
2670
- * JAVA_CRASH OR errorIssueType = NATIVE_CRASH`. * `errorIssueId`: Matches error reports
2671
- * belonging to the requested error issue ids only. Example: `errorIssueId = 1234 OR
2672
- * errorIssueId = 4567`. * `errorReportId`: Matches error reports with the requested error
2673
- * report id. Example: `errorReportId = 1234 OR errorReportId = 4567`. *
2674
- * `appProcessState`: Matches error reports on the process state of an app, indicating
2675
- * whether an app runs in the foreground (user-visible) or background. Valid candidates:
2676
- * `FOREGROUND`, `BACKGROUND`. Example: `appProcessState = FOREGROUND`. *
2677
- * `isUserPerceived`: Matches error reports that are user-perceived. It is not accompanied
2678
- * by any operators. Example: `isUserPerceived`. ** Supported operators:** * Comparison
2679
- * operators: The only supported comparison operator is equality. The filtered field must
2680
- * appear on the left hand side of the comparison. * Logical Operators: Logical operators
2681
- * `AND` and `OR` can be used to build complex filters following a conjunctive normal form
2682
- * (CNF), i.e., conjunctions of disjunctions. The `OR` operator takes precedence over
2683
- * `AND` so the use of parenthesis is not necessary when building CNF. The `OR` operator
2684
- * is only supported to build disjunctions that apply to the same field, e.g.,
2685
- * `versionCode = 123 OR versionCode = ANR`. The filter expression `versionCode = 123 OR
2686
- * errorIssueType = ANR` is not valid. ** Examples ** Some valid filtering expressions: *
2687
- * `versionCode = 123 AND errorIssueType = ANR` * `versionCode = 123 AND errorIssueType =
2688
- * OR errorIssueType = CRASH` * `versionCode = 123 AND (errorIssueType = OR errorIssueType
2689
- * = CRASH)`
2667
+ * Valid candidates: `CRASH`, `ANR`. Example: `errorIssueType = CRASH OR errorIssueType =
2668
+ * ANR`. * `errorIssueId`: Matches error reports belonging to the requested error issue
2669
+ * ids only. Example: `errorIssueId = 1234 OR errorIssueId = 4567`. * `errorReportId`:
2670
+ * Matches error reports with the requested error report id. Example: `errorReportId =
2671
+ * 1234 OR errorReportId = 4567`. * `appProcessState`: Matches error reports on the
2672
+ * process state of an app, indicating whether an app runs in the foreground (user-
2673
+ * visible) or background. Valid candidates: `FOREGROUND`, `BACKGROUND`. Example:
2674
+ * `appProcessState = FOREGROUND`. * `isUserPerceived`: Matches error reports that are
2675
+ * user-perceived. It is not accompanied by any operators. Example: `isUserPerceived`. **
2676
+ * Supported operators:** * Comparison operators: The only supported comparison operator
2677
+ * is equality. The filtered field must appear on the left hand side of the comparison. *
2678
+ * Logical Operators: Logical operators `AND` and `OR` can be used to build complex
2679
+ * filters following a conjunctive normal form (CNF), i.e., conjunctions of disjunctions.
2680
+ * The `OR` operator takes precedence over `AND` so the use of parenthesis is not
2681
+ * necessary when building CNF. The `OR` operator is only supported to build disjunctions
2682
+ * that apply to the same field, e.g., `versionCode = 123 OR versionCode = ANR`. The
2683
+ * filter expression `versionCode = 123 OR errorIssueType = ANR` is not valid. ** Examples
2684
+ * ** Some valid filtering expressions: * `versionCode = 123 AND errorIssueType = ANR` *
2685
+ * `versionCode = 123 AND errorIssueType = OR errorIssueType = CRASH` * `versionCode = 123
2686
+ * AND (errorIssueType = OR errorIssueType = CRASH)`
2690
2687
*/
2691
2688
public Search setFilter (java .lang .String filter ) {
2692
2689
this .filter = filter ;
0 commit comments