Skip to content

Commit

Permalink
[Automatic PR] Firebase API Client update (#2103)
Browse files Browse the repository at this point in the history
  • Loading branch information
flank-release[bot] authored Jul 26, 2021
1 parent ee14424 commit 8942fc7
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
14 changes: 14 additions & 0 deletions firebase_apis/json/testing_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,20 @@
},
"type": "array"
},
"roboMode": {
"description": "The mode in which Robo should run. Most clients should allow the server to populate this field automatically.",
"enum": [
"ROBO_MODE_UNSPECIFIED",
"ROBO_VERSION_1",
"ROBO_VERSION_2"
],
"enumDescriptions": [
"LINT.IfChange This means that the server should choose the mode. Recommended.",
"Runs Robo in UIAutomator-only mode without app resigning",
"Runs Robo in standard Espresso with UIAutomator fallback"
],
"type": "string"
},
"roboScript": {
"$ref": "FileReference",
"description": "A JSON file with a sequence of actions Robo should perform as a prologue for the crawl."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ public final class AndroidRoboTest extends com.google.api.client.json.GenericJso
@com.google.api.client.util.Key
private java.util.List<RoboDirective> roboDirectives;

/**
* The mode in which Robo should run. Most clients should allow the server to populate this field
* automatically.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String roboMode;

/**
* A JSON file with a sequence of actions Robo should perform as a prologue for the crawl.
* The value may be {@code null}.
Expand Down Expand Up @@ -223,6 +231,25 @@ public AndroidRoboTest setRoboDirectives(java.util.List<RoboDirective> roboDirec
return this;
}

/**
* The mode in which Robo should run. Most clients should allow the server to populate this field
* automatically.
* @return value or {@code null} for none
*/
public java.lang.String getRoboMode() {
return roboMode;
}

/**
* The mode in which Robo should run. Most clients should allow the server to populate this field
* automatically.
* @param roboMode roboMode or {@code null} for none
*/
public AndroidRoboTest setRoboMode(java.lang.String roboMode) {
this.roboMode = roboMode;
return this;
}

/**
* A JSON file with a sequence of actions Robo should perform as a prologue for the crawl.
* @return value or {@code null} for none
Expand Down

0 comments on commit 8942fc7

Please sign in to comment.