Skip to content

Commit

Permalink
build: Firebase API Client update [2021-02-22] (#1623)
Browse files Browse the repository at this point in the history
  • Loading branch information
flank-release[bot] authored Feb 22, 2021
1 parent 1838557 commit 6c5c955
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ ios_shards.json
*.log
test_runner/src/main/resources/binaries/
ktlint
flank-scripts.jar
6 changes: 5 additions & 1 deletion firebase_apis/json/testing_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1468,8 +1468,12 @@
"description": "The currently provided software environment on the devices under test.",
"id": "ProvidedSoftwareCatalog",
"properties": {
"androidxOrchestratorVersion": {
"description": "A string representing the current version of AndroidX Test Orchestrator that is used in the environment. The package is available at https://maven.google.com/web/index.html#androidx.test:orchestrator.",
"type": "string"
},
"orchestratorVersion": {
"description": "A string representing the current version of Android Test Orchestrator that is provided by TestExecutionService. Example: \"1.0.2 beta\".",
"description": "A string representing the current version of Android Test Orchestrator that is used in the environment. The package is available at https://maven.google.com/web/index.html#com.android.support.test:orchestrator.",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,58 @@
public final class ProvidedSoftwareCatalog extends com.google.api.client.json.GenericJson {

/**
* A string representing the current version of Android Test Orchestrator that is provided by
* TestExecutionService. Example: "1.0.2 beta".
* A string representing the current version of AndroidX Test Orchestrator that is used in the
* environment. The package is available at
* https://maven.google.com/web/index.html#androidx.test:orchestrator.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String androidxOrchestratorVersion;

/**
* A string representing the current version of Android Test Orchestrator that is used in the
* environment. The package is available at
* https://maven.google.com/web/index.html#com.android.support.test:orchestrator.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String orchestratorVersion;

/**
* A string representing the current version of Android Test Orchestrator that is provided by
* TestExecutionService. Example: "1.0.2 beta".
* A string representing the current version of AndroidX Test Orchestrator that is used in the
* environment. The package is available at
* https://maven.google.com/web/index.html#androidx.test:orchestrator.
* @return value or {@code null} for none
*/
public java.lang.String getAndroidxOrchestratorVersion() {
return androidxOrchestratorVersion;
}

/**
* A string representing the current version of AndroidX Test Orchestrator that is used in the
* environment. The package is available at
* https://maven.google.com/web/index.html#androidx.test:orchestrator.
* @param androidxOrchestratorVersion androidxOrchestratorVersion or {@code null} for none
*/
public ProvidedSoftwareCatalog setAndroidxOrchestratorVersion(java.lang.String androidxOrchestratorVersion) {
this.androidxOrchestratorVersion = androidxOrchestratorVersion;
return this;
}

/**
* A string representing the current version of Android Test Orchestrator that is used in the
* environment. The package is available at
* https://maven.google.com/web/index.html#com.android.support.test:orchestrator.
* @return value or {@code null} for none
*/
public java.lang.String getOrchestratorVersion() {
return orchestratorVersion;
}

/**
* A string representing the current version of Android Test Orchestrator that is provided by
* TestExecutionService. Example: "1.0.2 beta".
* A string representing the current version of Android Test Orchestrator that is used in the
* environment. The package is available at
* https://maven.google.com/web/index.html#com.android.support.test:orchestrator.
* @param orchestratorVersion orchestratorVersion or {@code null} for none
*/
public ProvidedSoftwareCatalog setOrchestratorVersion(java.lang.String orchestratorVersion) {
Expand Down

0 comments on commit 6c5c955

Please sign in to comment.