testLab.ResultStorage interface

存储测试结果的位置。

签名:

export interface ResultStorage 

特性

财产类型描述
gcs路径细绳Google Cloud Storage 中写入测试结果的位置。格式为“gs://bucket/path/to/somewhere”。
结果Uri细绳Firebase Web 控制台中测试结果的 URI。
工具结果执行细绳包含测试结果的工具结果执行资源。格式为projects/{project_id}/histories/{history_id}/executions/{execution_id} 。可选,在错误的测试状态下可以省略。有关更多信息,请参阅 https://firebase.google.com/docs/test-lab/reference/toolresults/rest。
工具结果历史记录细绳包含测试结果的工具结果历史资源。格式为projects/{project_id}/histories/{history_id} 。有关更多信息,请参阅 https://firebase.google.com/docs/test-lab/reference/toolresults/rest。

testLab.ResultStorage.gcsPath

Google Cloud Storage 中写入测试结果的位置。格式为“gs://bucket/path/to/somewhere”。

签名:

gcsPath: string;

testLab.ResultStorage.resultsUri

Firebase Web 控制台中测试结果的 URI。

签名:

resultsUri: string;

testLab.ResultStorage.toolResultsExecution

包含测试结果的工具结果执行资源。格式为projects/{project_id}/histories/{history_id}/executions/{execution_id} 。可选,在错误的测试状态下可以省略。有关更多信息,请参阅 https://firebase.google.com/docs/test-lab/reference/toolresults/rest。

签名:

toolResultsExecution: string;

testLab.ResultStorage.toolResultsHistory

包含测试结果的工具结果历史资源。格式为projects/{project_id}/histories/{history_id} 。有关更多信息,请参阅 https://firebase.google.com/docs/test-lab/reference/toolresults/rest。

签名:

toolResultsHistory: string;