diff --git a/discovery/testing-v1.json b/discovery/testing-v1.json index 12bd845791..5a5ac61cb4 100644 --- a/discovery/testing-v1.json +++ b/discovery/testing-v1.json @@ -449,7 +449,7 @@ } } }, - "revision": "20240319", + "revision": "20240917", "rootUrl": "https://testing.googleapis.com/", "schemas": { "Account": { @@ -664,6 +664,11 @@ "description": "The unique opaque id for this model. Use this for invoking the TestExecutionService.", "type": "string" }, + "labInfo": { + "$ref": "LabInfo", + "description": "Output only. Lab info of this device.", + "readOnly": true + }, "lowFpsVideoRecording": { "description": "True if and only if tests with this model are recorded by stitching together screenshots. See use_low_spec_video_recording in device config.", "type": "boolean" @@ -1705,6 +1710,17 @@ }, "type": "object" }, + "LabInfo": { + "description": "Lab specific information for a device.", + "id": "LabInfo", + "properties": { + "name": { + "description": "Lab name where the device is hosted. If empty, the device is hosted in a Google owned lab.", + "type": "string" + } + }, + "type": "object" + }, "LauncherActivityIntent": { "description": "Specifies an intent that starts the main launcher activity.", "id": "LauncherActivityIntent", diff --git a/src/apis/testing/v1.ts b/src/apis/testing/v1.ts index 485764597a..df61d8a98f 100644 --- a/src/apis/testing/v1.ts +++ b/src/apis/testing/v1.ts @@ -274,6 +274,10 @@ export namespace testing_v1 { * The unique opaque id for this model. Use this for invoking the TestExecutionService. */ id?: string | null; + /** + * Output only. Lab info of this device. + */ + labInfo?: Schema$LabInfo; /** * True if and only if tests with this model are recorded by stitching together screenshots. See use_low_spec_video_recording in device config. */ @@ -1005,6 +1009,15 @@ export namespace testing_v1 { */ xctestrun?: Schema$FileReference; } + /** + * Lab specific information for a device. + */ + export interface Schema$LabInfo { + /** + * Lab name where the device is hosted. If empty, the device is hosted in a Google owned lab. + */ + name?: string | null; + } /** * Specifies an intent that starts the main launcher activity. */