Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Firebase API Client update [2021-08-09] #2126

Merged
merged 1 commit into from
Aug 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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