Skip to content

Commit

Permalink
[Automatic PR] Firebase API Client update (#2126)
Browse files Browse the repository at this point in the history
  • Loading branch information
flank-release[bot] authored Aug 9, 2021
1 parent 9abc627 commit f05cc03
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion firebase_apis/json/testing_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1994,7 +1994,7 @@
},
"systrace": {
"$ref": "SystraceSetup",
"description": "Systrace configuration for the run. If set a systrace will be taken, starting on test start and lasting for the configured duration. The systrace file thus obtained is put in the results bucket together with the other artifacts from the run."
"description": "Deprecated: Systrace uses Python 2 which has been sunset 2020-01-01. Support of Systrace may stop at any time, at which point no Systrace file will be provided in the results. Systrace configuration for the run. If set a systrace will be taken, starting on test start and lasting for the configured duration. The systrace file thus obtained is put in the results bucket together with the other artifacts from the run."
}
},
"type": "object"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ public final class TestSetup extends com.google.api.client.json.GenericJson {
private java.lang.String networkProfile;

/**
* Systrace configuration for the run. If set a systrace will be taken, starting on test start and
* lasting for the configured duration. The systrace file thus obtained is put in the results
* bucket together with the other artifacts from the run.
* Deprecated: Systrace uses Python 2 which has been sunset 2020-01-01. Support of Systrace may
* stop at any time, at which point no Systrace file will be provided in the results. Systrace
* configuration for the run. If set a systrace will be taken, starting on test start and lasting
* for the configured duration. The systrace file thus obtained is put in the results bucket
* together with the other artifacts from the run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -246,19 +248,23 @@ public TestSetup setNetworkProfile(java.lang.String networkProfile) {
}

/**
* Systrace configuration for the run. If set a systrace will be taken, starting on test start and
* lasting for the configured duration. The systrace file thus obtained is put in the results
* bucket together with the other artifacts from the run.
* Deprecated: Systrace uses Python 2 which has been sunset 2020-01-01. Support of Systrace may
* stop at any time, at which point no Systrace file will be provided in the results. Systrace
* configuration for the run. If set a systrace will be taken, starting on test start and lasting
* for the configured duration. The systrace file thus obtained is put in the results bucket
* together with the other artifacts from the run.
* @return value or {@code null} for none
*/
public SystraceSetup getSystrace() {
return systrace;
}

/**
* Systrace configuration for the run. If set a systrace will be taken, starting on test start and
* lasting for the configured duration. The systrace file thus obtained is put in the results
* bucket together with the other artifacts from the run.
* Deprecated: Systrace uses Python 2 which has been sunset 2020-01-01. Support of Systrace may
* stop at any time, at which point no Systrace file will be provided in the results. Systrace
* configuration for the run. If set a systrace will be taken, starting on test start and lasting
* for the configured duration. The systrace file thus obtained is put in the results bucket
* together with the other artifacts from the run.
* @param systrace systrace or {@code null} for none
*/
public TestSetup setSystrace(SystraceSetup systrace) {
Expand Down

0 comments on commit f05cc03

Please sign in to comment.