1/**
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16export class Job {
17  test_type: number = void 0;
18
19  hostname: string = void 0;
20  priority: string = void 0;
21  test_name: string = void 0;
22  require_signed_device_build: boolean = void 0;
23  has_bootloader_img: boolean = void 0;
24  has_radio_img: boolean = void 0;
25  device: string = void 0;
26  serial: string = void 0;
27
28  // device image information
29  build_storage_type: number = void 0;
30  manifest_branch: string = void 0;
31  build_target: string = void 0;
32  build_id: string = void 0;
33  pab_account_id: string = void 0;
34
35  shards: number = void 0;
36  param: string = void 0;
37  status: number = void 0;
38  period: number = void 0;
39
40  // GSI information
41  gsi_storage_type: number = void 0;
42  gsi_branch: string = void 0;
43  gsi_build_target: string = void 0;
44  gsi_build_id: string = void 0;
45  gsi_pab_account_id: string = void 0;
46  gsi_vendor_version: string = void 0;
47
48  // test suite information
49  test_storage_type: number = void 0;
50  test_branch: string = void 0;
51  test_build_target: string = void 0;
52  test_build_id: string = void 0;
53  test_pab_account_id: string = void 0;
54
55  retry_count: number = void 0;
56
57  infra_log_url: string = void 0;
58
59  image_package_repo_base: string = void 0;
60
61  report_bucket: string = void 0;
62  report_spreadsheet_id: string = void 0;
63
64  timestamp = void 0;
65  heartbeat_stamp = void 0;
66}
67