testLab.ResultStorage interface

存储测试结果的位置。

签名

export interface ResultStorage 

属性

属性 类型 说明
gcsPath 字符串 Google Cloud Storage 中写入测试结果的位置。格式为“gs://bucket/path/to/somewhere”。
resultsUri 字符串 Firebase Web 控制台中测试结果的 URI。
toolResultsExecution 字符串 包含测试结果的工具结果执行资源。格式为 projects/{project_id}/histories/{history_id}/executions/{execution_id}。可选,在错误的测试状态下可以省略。如需了解详情,请参阅 https://firebase.google.com/docs/test-lab/reference/toolresults/rest。
toolResultsHistory 字符串 包含测试结果的工具结果历史记录资源。格式为 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;