@maxim_mazurok/gapi.client.toolresults-v1beta3 0.0.20230425 → 0.0.20230427

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +1781 -891
  2. package/package.json +1 -1
  3. package/tests.ts +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://toolresults.googleapis.com/$discovery/rest?version=v1beta3
12
- // Revision: 20230425
12
+ // Revision: 20230427
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -24,57 +24,76 @@ declare namespace gapi.client {
24
24
  namespace toolresults {
25
25
  interface AndroidAppInfo {
26
26
  /** The name of the app. Optional */
27
- name?: string;
27
+ name?:
28
+ string;
28
29
  /** The package name of the app. Required. */
29
- packageName?: string;
30
+ packageName?:
31
+ string;
30
32
  /** The internal version code of the app. Optional. */
31
- versionCode?: string;
33
+ versionCode?:
34
+ string;
32
35
  /** The version name of the app. Optional. */
33
- versionName?: string;
36
+ versionName?:
37
+ string;
34
38
  }
35
39
  interface AndroidInstrumentationTest {
36
40
  /** The java package for the test to be executed. Required */
37
- testPackageId?: string;
41
+ testPackageId?:
42
+ string;
38
43
  /** The InstrumentationTestRunner class. Required */
39
- testRunnerClass?: string;
44
+ testRunnerClass?:
45
+ string;
40
46
  /**
41
47
  * Each target must be fully qualified with the package name or class name, in one of these formats: - "package package_name" - "class package_name.class_name" - "class
42
48
  * package_name.class_name#method_name" If empty, all targets in the module will be run.
43
49
  */
44
- testTargets?: string[];
50
+ testTargets?:
51
+ string[];
45
52
  /** The flag indicates whether Android Test Orchestrator will be used to run test or not. */
46
- useOrchestrator?: boolean;
53
+ useOrchestrator?:
54
+ boolean;
47
55
  }
48
56
  interface AndroidRoboTest {
49
57
  /** The initial activity that should be used to start the app. Optional */
50
- appInitialActivity?: string;
58
+ appInitialActivity?:
59
+ string;
51
60
  /** The java package for the bootstrap. Optional */
52
- bootstrapPackageId?: string;
61
+ bootstrapPackageId?:
62
+ string;
53
63
  /** The runner class for the bootstrap. Optional */
54
- bootstrapRunnerClass?: string;
64
+ bootstrapRunnerClass?:
65
+ string;
55
66
  /** The max depth of the traversal stack Robo can explore. Optional */
56
- maxDepth?: number;
67
+ maxDepth?:
68
+ number;
57
69
  /** The max number of steps/actions Robo can execute. Default is no limit (0). Optional */
58
- maxSteps?: number;
70
+ maxSteps?:
71
+ number;
59
72
  }
60
73
  interface AndroidTest {
61
74
  /** Information about the application under test. */
62
- androidAppInfo?: AndroidAppInfo;
75
+ androidAppInfo?:
76
+ AndroidAppInfo;
63
77
  /** An Android instrumentation test. */
64
- androidInstrumentationTest?: AndroidInstrumentationTest;
78
+ androidInstrumentationTest?:
79
+ AndroidInstrumentationTest;
65
80
  /** An Android robo test. */
66
- androidRoboTest?: AndroidRoboTest;
81
+ androidRoboTest?:
82
+ AndroidRoboTest;
67
83
  /** An Android test loop. */
68
- androidTestLoop?: any;
84
+ androidTestLoop?:
85
+ any;
69
86
  /** Max time a test is allowed to run before it is automatically cancelled. */
70
- testTimeout?: Duration;
87
+ testTimeout?:
88
+ Duration;
71
89
  }
72
90
  // tslint:disable-next-line:no-empty-interface
73
91
  interface AndroidTestLoop {
74
92
  }
75
93
  interface ANR {
76
94
  /** The stack trace of the ANR crash. Optional. */
77
- stackTrace?: StackTrace;
95
+ stackTrace?:
96
+ StackTrace;
78
97
  }
79
98
  interface Any {
80
99
  /**
@@ -87,49 +106,63 @@ declare namespace gapi.client {
87
106
  * currently available in the official protobuf release, and it is not used for type URLs beginning with type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme)
88
107
  * might be used with implementation specific semantics.
89
108
  */
90
- typeUrl?: string;
109
+ typeUrl?:
110
+ string;
91
111
  /** Must be a valid serialized protocol buffer of the above specified type. */
92
- value?: string;
112
+ value?:
113
+ string;
93
114
  }
94
115
  interface AppStartTime {
95
116
  /**
96
117
  * Optional. The time from app start to reaching the developer-reported "fully drawn" time. This is only stored if the app includes a call to Activity.reportFullyDrawn(). See
97
118
  * https://developer.android.com/topic/performance/launch-time.html#time-full
98
119
  */
99
- fullyDrawnTime?: Duration;
120
+ fullyDrawnTime?:
121
+ Duration;
100
122
  /** The time from app start to the first displayed activity being drawn, as reported in Logcat. See https://developer.android.com/topic/performance/launch-time.html#time-initial */
101
- initialDisplayTime?: Duration;
123
+ initialDisplayTime?:
124
+ Duration;
102
125
  }
103
126
  // tslint:disable-next-line:no-empty-interface
104
127
  interface AvailableDeepLinks {
105
128
  }
106
129
  interface BasicPerfSampleSeries {
107
- perfMetricType?: string;
108
- perfUnit?: string;
109
- sampleSeriesLabel?: string;
130
+ perfMetricType?:
131
+ string;
132
+ perfUnit?:
133
+ string;
134
+ sampleSeriesLabel?:
135
+ string;
110
136
  }
111
137
  interface BatchCreatePerfSamplesRequest {
112
138
  /** The set of PerfSamples to create should not include existing timestamps */
113
- perfSamples?: PerfSample[];
139
+ perfSamples?:
140
+ PerfSample[];
114
141
  }
115
142
  interface BatchCreatePerfSamplesResponse {
116
- perfSamples?: PerfSample[];
143
+ perfSamples?:
144
+ PerfSample[];
117
145
  }
118
146
  interface BlankScreen {
119
147
  /** The screen id of the element */
120
- screenId?: string;
148
+ screenId?:
149
+ string;
121
150
  }
122
151
  interface CPUInfo {
123
152
  /** description of the device processor ie '1.8 GHz hexa core 64-bit ARMv8-A' */
124
- cpuProcessor?: string;
153
+ cpuProcessor?:
154
+ string;
125
155
  /** the CPU clock speed in GHz */
126
- cpuSpeedInGhz?: number;
156
+ cpuSpeedInGhz?:
157
+ number;
127
158
  /** the number of CPU cores */
128
- numberOfCores?: number;
159
+ numberOfCores?:
160
+ number;
129
161
  }
130
162
  interface CrashDialogError {
131
163
  /** The name of the package that caused the dialog. */
132
- crashPackage?: string;
164
+ crashPackage?:
165
+ string;
133
166
  }
134
167
  // tslint:disable-next-line:no-empty-interface
135
168
  interface DetectedAppSplashScreen {
@@ -143,111 +176,146 @@ declare namespace gapi.client {
143
176
  * field. For durations of one second or more, a non-zero value for the `nanos` field must be of the same sign as the `seconds` field. Must be from -999,999,999 to +999,999,999
144
177
  * inclusive.
145
178
  */
146
- nanos?: number;
179
+ nanos?:
180
+ number;
147
181
  /**
148
182
  * Signed seconds of the span of time. Must be from -315,576,000,000 to +315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25
149
183
  * days/year * 10000 years
150
184
  */
151
- seconds?: string;
185
+ seconds?:
186
+ string;
152
187
  }
153
188
  interface EncounteredLoginScreen {
154
189
  /** Number of encountered distinct login screens. */
155
- distinctScreens?: number;
190
+ distinctScreens?:
191
+ number;
156
192
  /** Subset of login screens. */
157
- screenIds?: string[];
193
+ screenIds?:
194
+ string[];
158
195
  }
159
196
  interface EncounteredNonAndroidUiWidgetScreen {
160
197
  /** Number of encountered distinct screens with non Android UI widgets. */
161
- distinctScreens?: number;
198
+ distinctScreens?:
199
+ number;
162
200
  /** Subset of screens which contain non Android UI widgets. */
163
- screenIds?: string[];
201
+ screenIds?:
202
+ string[];
164
203
  }
165
204
  interface Environment {
166
205
  /** Output only. The time when the Environment status was set to complete. This value will be set automatically when state transitions to COMPLETE. */
167
- completionTime?: Timestamp;
206
+ completionTime?:
207
+ Timestamp;
168
208
  /** Output only. The time when the Environment was created. */
169
- creationTime?: Timestamp;
209
+ creationTime?:
210
+ Timestamp;
170
211
  /**
171
212
  * Dimension values describing the environment. Dimension values always consist of "Model", "Version", "Locale", and "Orientation". - In response: always set - In create request:
172
213
  * always set - In update request: never set
173
214
  */
174
- dimensionValue?: EnvironmentDimensionValueEntry[];
215
+ dimensionValue?:
216
+ EnvironmentDimensionValueEntry[];
175
217
  /** A short human-readable name to display in the UI. Maximum of 100 characters. For example: Nexus 5, API 27. */
176
- displayName?: string;
218
+ displayName?:
219
+ string;
177
220
  /** Output only. An Environment id. */
178
- environmentId?: string;
221
+ environmentId?:
222
+ string;
179
223
  /** Merged result of the environment. */
180
- environmentResult?: MergedResult;
224
+ environmentResult?:
225
+ MergedResult;
181
226
  /** Output only. An Execution id. */
182
- executionId?: string;
227
+ executionId?:
228
+ string;
183
229
  /** Output only. A History id. */
184
- historyId?: string;
230
+ historyId?:
231
+ string;
185
232
  /** Output only. A Project id. */
186
- projectId?: string;
233
+ projectId?:
234
+ string;
187
235
  /** The location where output files are stored in the user bucket. */
188
- resultsStorage?: ResultsStorage;
236
+ resultsStorage?:
237
+ ResultsStorage;
189
238
  /** Output only. Summaries of shards. Only one shard will present unless sharding feature is enabled in TestExecutionService. */
190
- shardSummaries?: ShardSummary[];
239
+ shardSummaries?:
240
+ ShardSummary[];
191
241
  }
192
242
  interface EnvironmentDimensionValueEntry {
193
- key?: string;
194
- value?: string;
243
+ key?:
244
+ string;
245
+ value?:
246
+ string;
195
247
  }
196
248
  interface Execution {
197
249
  /**
198
250
  * The time when the Execution status transitioned to COMPLETE. This value will be set automatically when state transitions to COMPLETE. - In response: set if the execution state is
199
251
  * COMPLETE. - In create/update request: never set
200
252
  */
201
- completionTime?: Timestamp;
253
+ completionTime?:
254
+ Timestamp;
202
255
  /** The time when the Execution was created. This value will be set automatically when CreateExecution is called. - In response: always set - In create/update request: never set */
203
- creationTime?: Timestamp;
256
+ creationTime?:
257
+ Timestamp;
204
258
  /**
205
259
  * The dimensions along which different steps in this execution may vary. This must remain fixed over the life of the execution. Returns INVALID_ARGUMENT if this field is set in an
206
260
  * update request. Returns INVALID_ARGUMENT if the same name occurs in more than one dimension_definition. Returns INVALID_ARGUMENT if the size of the list is over 100. - In response:
207
261
  * present if set by create - In create request: optional - In update request: never set
208
262
  */
209
- dimensionDefinitions?: any[];
263
+ dimensionDefinitions?:
264
+ any[];
210
265
  /**
211
266
  * A unique identifier within a History for this Execution. Returns INVALID_ARGUMENT if this field is set or overwritten by the caller. - In response always set - In create/update
212
267
  * request: never set
213
268
  */
214
- executionId?: string;
269
+ executionId?:
270
+ string;
215
271
  /** Classify the result, for example into SUCCESS or FAILURE - In response: present if set by create/update request - In create/update request: optional */
216
- outcome?: Outcome;
272
+ outcome?:
273
+ Outcome;
217
274
  /** Lightweight information about execution request. - In response: present if set by create - In create: optional - In update: optional */
218
- specification?: Specification;
275
+ specification?:
276
+ Specification;
219
277
  /**
220
278
  * The initial state is IN_PROGRESS. The only legal state transitions is from IN_PROGRESS to COMPLETE. A PRECONDITION_FAILED will be returned if an invalid transition is requested. The
221
279
  * state can only be set to COMPLETE once. A FAILED_PRECONDITION will be returned if the state is set to COMPLETE multiple times. If the state is set to COMPLETE, all the in-progress
222
280
  * steps within the execution will be set as COMPLETE. If the outcome of the step is not set, the outcome will be set to INCONCLUSIVE. - In response always set - In create/update
223
281
  * request: optional
224
282
  */
225
- state?: string;
283
+ state?:
284
+ string;
226
285
  /** TestExecution Matrix ID that the TestExecutionService uses. - In response: present if set by create - In create: optional - In update: never set */
227
- testExecutionMatrixId?: string;
286
+ testExecutionMatrixId?:
287
+ string;
228
288
  }
229
289
  // tslint:disable-next-line:no-empty-interface
230
290
  interface FailedToInstall {
231
291
  }
232
292
  interface FailureDetail {
233
293
  /** If the failure was severe because the system (app) under test crashed. */
234
- crashed?: boolean;
294
+ crashed?:
295
+ boolean;
235
296
  /** If the device ran out of memory during a test, causing the test to crash. */
236
- deviceOutOfMemory?: boolean;
297
+ deviceOutOfMemory?:
298
+ boolean;
237
299
  /** If the Roboscript failed to complete successfully, e.g., because a Roboscript action or assertion failed or a Roboscript action could not be matched during the entire crawl. */
238
- failedRoboscript?: boolean;
300
+ failedRoboscript?:
301
+ boolean;
239
302
  /** If an app is not installed and thus no test can be run with the app. This might be caused by trying to run a test on an unsupported platform. */
240
- notInstalled?: boolean;
303
+ notInstalled?:
304
+ boolean;
241
305
  /** If a native process (including any other than the app) crashed. */
242
- otherNativeCrash?: boolean;
306
+ otherNativeCrash?:
307
+ boolean;
243
308
  /** If the test overran some time limit, and that is why it failed. */
244
- timedOut?: boolean;
309
+ timedOut?:
310
+ boolean;
245
311
  /** If the robo was unable to crawl the app; perhaps because the app did not start. */
246
- unableToCrawl?: boolean;
312
+ unableToCrawl?:
313
+ boolean;
247
314
  }
248
315
  interface FatalException {
249
316
  /** The stack trace of the fatal exception. Optional. */
250
- stackTrace?: StackTrace;
317
+ stackTrace?:
318
+ StackTrace;
251
319
  }
252
320
  interface FileReference {
253
321
  /**
@@ -255,203 +323,266 @@ declare namespace gapi.client {
255
323
  * version-specific info, gs://mybucket/path/to/test.xml#1360383693690000 An INVALID_ARGUMENT error will be returned if the URI format is not supported. - In response: always set - In
256
324
  * create/update request: always set
257
325
  */
258
- fileUri?: string;
326
+ fileUri?:
327
+ string;
259
328
  }
260
329
  interface GraphicsStats {
261
330
  /** Histogram of frame render times. There should be 154 buckets ranging from [5ms, 6ms) to [4950ms, infinity) */
262
- buckets?: GraphicsStatsBucket[];
331
+ buckets?:
332
+ GraphicsStatsBucket[];
263
333
  /** Total "high input latency" events. */
264
- highInputLatencyCount?: string;
334
+ highInputLatencyCount?:
335
+ string;
265
336
  /** Total frames with slow render time. Should be <= total_frames. */
266
- jankyFrames?: string;
337
+ jankyFrames?:
338
+ string;
267
339
  /** Total "missed vsync" events. */
268
- missedVsyncCount?: string;
340
+ missedVsyncCount?:
341
+ string;
269
342
  /** 50th percentile frame render time in milliseconds. */
270
- p50Millis?: string;
343
+ p50Millis?:
344
+ string;
271
345
  /** 90th percentile frame render time in milliseconds. */
272
- p90Millis?: string;
346
+ p90Millis?:
347
+ string;
273
348
  /** 95th percentile frame render time in milliseconds. */
274
- p95Millis?: string;
349
+ p95Millis?:
350
+ string;
275
351
  /** 99th percentile frame render time in milliseconds. */
276
- p99Millis?: string;
352
+ p99Millis?:
353
+ string;
277
354
  /** Total "slow bitmap upload" events. */
278
- slowBitmapUploadCount?: string;
355
+ slowBitmapUploadCount?:
356
+ string;
279
357
  /** Total "slow draw" events. */
280
- slowDrawCount?: string;
358
+ slowDrawCount?:
359
+ string;
281
360
  /** Total "slow UI thread" events. */
282
- slowUiThreadCount?: string;
361
+ slowUiThreadCount?:
362
+ string;
283
363
  /** Total frames rendered by package. */
284
- totalFrames?: string;
364
+ totalFrames?:
365
+ string;
285
366
  }
286
367
  interface GraphicsStatsBucket {
287
368
  /** Number of frames in the bucket. */
288
- frameCount?: string;
369
+ frameCount?:
370
+ string;
289
371
  /** Lower bound of render time in milliseconds. */
290
- renderMillis?: string;
372
+ renderMillis?:
373
+ string;
291
374
  }
292
375
  interface History {
293
376
  /** A short human-readable (plain text) name to display in the UI. Maximum of 100 characters. - In response: present if set during create. - In create request: optional */
294
- displayName?: string;
377
+ displayName?:
378
+ string;
295
379
  /**
296
380
  * A unique identifier within a project for this History. Returns INVALID_ARGUMENT if this field is set or overwritten by the caller. - In response always set - In create request:
297
381
  * never set
298
382
  */
299
- historyId?: string;
383
+ historyId?:
384
+ string;
300
385
  /** A name to uniquely identify a history within a project. Maximum of 200 characters. - In response always set - In create request: always set */
301
- name?: string;
386
+ name?:
387
+ string;
302
388
  /** The platform of the test history. - In response: always set. Returns the platform of the last execution if unknown. */
303
- testPlatform?: string;
389
+ testPlatform?:
390
+ string;
304
391
  }
305
392
  interface Image {
306
393
  /** An error explaining why the thumbnail could not be rendered. */
307
- error?: Status;
394
+ error?:
395
+ Status;
308
396
  /** A reference to the full-size, original image. This is the same as the tool_outputs entry for the image under its Step. Always set. */
309
- sourceImage?: ToolOutputReference;
397
+ sourceImage?:
398
+ ToolOutputReference;
310
399
  /** The step to which the image is attached. Always set. */
311
- stepId?: string;
400
+ stepId?:
401
+ string;
312
402
  /** The thumbnail. */
313
- thumbnail?: Thumbnail;
403
+ thumbnail?:
404
+ Thumbnail;
314
405
  }
315
406
  interface InAppPurchasesFound {
316
407
  /** The total number of in-app purchases flows explored: how many times the robo tries to buy a SKU. */
317
- inAppPurchasesFlowsExplored?: number;
408
+ inAppPurchasesFlowsExplored?:
409
+ number;
318
410
  /** The total number of in-app purchases flows started. */
319
- inAppPurchasesFlowsStarted?: number;
411
+ inAppPurchasesFlowsStarted?:
412
+ number;
320
413
  }
321
414
  interface InconclusiveDetail {
322
415
  /**
323
416
  * If the end user aborted the test execution before a pass or fail could be determined. For example, the user pressed ctrl-c which sent a kill signal to the test runner while the test
324
417
  * was running.
325
418
  */
326
- abortedByUser?: boolean;
419
+ abortedByUser?:
420
+ boolean;
327
421
  /** If results are being provided to the user in certain cases of infrastructure failures */
328
- hasErrorLogs?: boolean;
422
+ hasErrorLogs?:
423
+ boolean;
329
424
  /**
330
425
  * If the test runner could not determine success or failure because the test depends on a component other than the system under test which failed. For example, a mobile test requires
331
426
  * provisioning a device where the test executes, and that provisioning can fail.
332
427
  */
333
- infrastructureFailure?: boolean;
428
+ infrastructureFailure?:
429
+ boolean;
334
430
  }
335
431
  interface IndividualOutcome {
336
432
  /** Unique int given to each step. Ranges from 0(inclusive) to total number of steps(exclusive). The primary step is 0. */
337
- multistepNumber?: number;
338
- outcomeSummary?: string;
433
+ multistepNumber?:
434
+ number;
435
+ outcomeSummary?:
436
+ string;
339
437
  /** How long it took for this step to run. */
340
- runDuration?: Duration;
341
- stepId?: string;
438
+ runDuration?:
439
+ Duration;
440
+ stepId?:
441
+ string;
342
442
  }
343
443
  // tslint:disable-next-line:no-empty-interface
344
444
  interface InsufficientCoverage {
345
445
  }
346
446
  interface IosAppCrashed {
347
447
  /** The stack trace, if one is available. Optional. */
348
- stackTrace?: StackTrace;
448
+ stackTrace?:
449
+ StackTrace;
349
450
  }
350
451
  interface IosAppInfo {
351
452
  /** The name of the app. Required */
352
- name?: string;
453
+ name?:
454
+ string;
353
455
  }
354
456
  // tslint:disable-next-line:no-empty-interface
355
457
  interface IosRoboTest {
356
458
  }
357
459
  interface IosTest {
358
460
  /** Information about the application under test. */
359
- iosAppInfo?: IosAppInfo;
461
+ iosAppInfo?:
462
+ IosAppInfo;
360
463
  /** An iOS Robo test. */
361
- iosRoboTest?: any;
464
+ iosRoboTest?:
465
+ any;
362
466
  /** An iOS test loop. */
363
- iosTestLoop?: IosTestLoop;
467
+ iosTestLoop?:
468
+ IosTestLoop;
364
469
  /** An iOS XCTest. */
365
- iosXcTest?: IosXcTest;
470
+ iosXcTest?:
471
+ IosXcTest;
366
472
  /** Max time a test is allowed to run before it is automatically cancelled. */
367
- testTimeout?: Duration;
473
+ testTimeout?:
474
+ Duration;
368
475
  }
369
476
  interface IosTestLoop {
370
477
  /** Bundle ID of the app. */
371
- bundleId?: string;
478
+ bundleId?:
479
+ string;
372
480
  }
373
481
  interface IosXcTest {
374
482
  /** Bundle ID of the app. */
375
- bundleId?: string;
483
+ bundleId?:
484
+ string;
376
485
  /** Xcode version that the test was run with. */
377
- xcodeVersion?: string;
486
+ xcodeVersion?:
487
+ string;
378
488
  }
379
489
  // tslint:disable-next-line:no-empty-interface
380
490
  interface LauncherActivityNotFound {
381
491
  }
382
492
  interface ListEnvironmentsResponse {
383
493
  /** Environments. Always set. */
384
- environments?: Environment[];
494
+ environments?:
495
+ Environment[];
385
496
  /** A Execution id Always set. */
386
- executionId?: string;
497
+ executionId?:
498
+ string;
387
499
  /** A History id. Always set. */
388
- historyId?: string;
500
+ historyId?:
501
+ string;
389
502
  /** A continuation token to resume the query at the next item. Will only be set if there are more Environments to fetch. */
390
- nextPageToken?: string;
503
+ nextPageToken?:
504
+ string;
391
505
  /** A Project id. Always set. */
392
- projectId?: string;
506
+ projectId?:
507
+ string;
393
508
  }
394
509
  interface ListExecutionsResponse {
395
510
  /** Executions. Always set. */
396
- executions?: Execution[];
511
+ executions?:
512
+ Execution[];
397
513
  /** A continuation token to resume the query at the next item. Will only be set if there are more Executions to fetch. */
398
- nextPageToken?: string;
514
+ nextPageToken?:
515
+ string;
399
516
  }
400
517
  interface ListHistoriesResponse {
401
518
  /** Histories. */
402
- histories?: History[];
519
+ histories?:
520
+ History[];
403
521
  /**
404
522
  * A continuation token to resume the query at the next item. Will only be set if there are more histories to fetch. Tokens are valid for up to one hour from the time of the first list
405
523
  * request. For instance, if you make a list request at 1PM and use the token from this first request 10 minutes later, the token from this second response will only be valid for 50
406
524
  * minutes.
407
525
  */
408
- nextPageToken?: string;
526
+ nextPageToken?:
527
+ string;
409
528
  }
410
529
  interface ListPerfSampleSeriesResponse {
411
530
  /** The resulting PerfSampleSeries sorted by id */
412
- perfSampleSeries?: PerfSampleSeries[];
531
+ perfSampleSeries?:
532
+ PerfSampleSeries[];
413
533
  }
414
534
  interface ListPerfSamplesResponse {
415
535
  /**
416
536
  * Optional, returned if result size exceeds the page size specified in the request (or the default page size, 500, if unspecified). It indicates the last sample timestamp to be used
417
537
  * as page_token in subsequent request
418
538
  */
419
- nextPageToken?: string;
420
- perfSamples?: PerfSample[];
539
+ nextPageToken?:
540
+ string;
541
+ perfSamples?:
542
+ PerfSample[];
421
543
  }
422
544
  interface ListScreenshotClustersResponse {
423
545
  /** The set of clusters associated with an execution Always set */
424
- clusters?: ScreenshotCluster[];
546
+ clusters?:
547
+ ScreenshotCluster[];
425
548
  }
426
549
  interface ListStepAccessibilityClustersResponse {
427
550
  /**
428
551
  * A sequence of accessibility suggestions, grouped into clusters. Within the sequence, clusters that belong to the same SuggestionCategory should be adjacent. Within each category,
429
552
  * clusters should be ordered by their SuggestionPriority (ERRORs first). The categories should be ordered by their highest priority cluster.
430
553
  */
431
- clusters?: SuggestionClusterProto[];
554
+ clusters?:
555
+ SuggestionClusterProto[];
432
556
  /** A full resource name of the step. For example, projects/my-project/histories/bh.1234567890abcdef/executions/ 1234567890123456789/steps/bs.1234567890abcdef Always presents. */
433
- name?: string;
557
+ name?:
558
+ string;
434
559
  }
435
560
  interface ListStepsResponse {
436
561
  /** A continuation token to resume the query at the next item. If set, indicates that there are more steps to read, by calling list again with this value in the page_token field. */
437
- nextPageToken?: string;
562
+ nextPageToken?:
563
+ string;
438
564
  /** Steps. */
439
- steps?: Step[];
565
+ steps?:
566
+ Step[];
440
567
  }
441
568
  interface ListStepThumbnailsResponse {
442
569
  /** A continuation token to resume the query at the next item. If set, indicates that there are more thumbnails to read, by calling list again with this value in the page_token field. */
443
- nextPageToken?: string;
570
+ nextPageToken?:
571
+ string;
444
572
  /**
445
573
  * A list of image data. Images are returned in a deterministic order; they are ordered by these factors, in order of importance: * First, by their associated test case. Images without
446
574
  * a test case are considered greater than images with one. * Second, by their creation time. Images without a creation time are greater than images with one. * Third, by the order in
447
575
  * which they were added to the step (by calls to CreateStep or UpdateStep).
448
576
  */
449
- thumbnails?: Image[];
577
+ thumbnails?:
578
+ Image[];
450
579
  }
451
580
  interface ListTestCasesResponse {
452
- nextPageToken?: string;
581
+ nextPageToken?:
582
+ string;
453
583
  /** List of test cases. */
454
- testCases?: TestCase[];
584
+ testCases?:
585
+ TestCase[];
455
586
  }
456
587
  // tslint:disable-next-line:no-empty-interface
457
588
  interface LogcatCollectionError {
@@ -461,271 +592,361 @@ declare namespace gapi.client {
461
592
  }
462
593
  interface MemoryInfo {
463
594
  /** Maximum memory that can be allocated to the process in KiB */
464
- memoryCapInKibibyte?: string;
595
+ memoryCapInKibibyte?:
596
+ string;
465
597
  /** Total memory available on the device in KiB */
466
- memoryTotalInKibibyte?: string;
598
+ memoryTotalInKibibyte?:
599
+ string;
467
600
  }
468
601
  interface MergedResult {
469
602
  /** Outcome of the resource */
470
- outcome?: Outcome;
603
+ outcome?:
604
+ Outcome;
471
605
  /** State of the resource */
472
- state?: string;
606
+ state?:
607
+ string;
473
608
  /**
474
609
  * The combined and rolled-up result of each test suite that was run as part of this environment. Combining: When the test cases from a suite are run in different steps (sharding), the
475
610
  * results are added back together in one overview. (e.g., if shard1 has 2 failures and shard2 has 1 failure than the overview failure_count = 3). Rollup: When test cases from the same
476
611
  * suite are run multiple times (flaky), the results are combined (e.g., if testcase1.run1 fails, testcase1.run2 passes, and both testcase2.run1 and testcase2.run2 fail then the
477
612
  * overview flaky_count = 1 and failure_count = 1).
478
613
  */
479
- testSuiteOverviews?: TestSuiteOverview[];
614
+ testSuiteOverviews?:
615
+ TestSuiteOverview[];
480
616
  }
481
617
  interface MultiStep {
482
618
  /** Unique int given to each step. Ranges from 0(inclusive) to total number of steps(exclusive). The primary step is 0. */
483
- multistepNumber?: number;
619
+ multistepNumber?:
620
+ number;
484
621
  /** Present if it is a primary (original) step. */
485
- primaryStep?: PrimaryStep;
622
+ primaryStep?:
623
+ PrimaryStep;
486
624
  /** Step Id of the primary (original) step, which might be this step. */
487
- primaryStepId?: string;
625
+ primaryStepId?:
626
+ string;
488
627
  }
489
628
  interface NativeCrash {
490
629
  /** The stack trace of the native crash. Optional. */
491
- stackTrace?: StackTrace;
630
+ stackTrace?:
631
+ StackTrace;
492
632
  }
493
633
  interface NonSdkApi {
494
634
  /** The signature of the Non-SDK API */
495
- apiSignature?: string;
635
+ apiSignature?:
636
+ string;
496
637
  /** Example stack traces of this API being called. */
497
- exampleStackTraces?: string[];
638
+ exampleStackTraces?:
639
+ string[];
498
640
  /** Optional debugging insights for non-SDK API violations. */
499
- insights?: NonSdkApiInsight[];
641
+ insights?:
642
+ NonSdkApiInsight[];
500
643
  /** The total number of times this API was observed to have been called. */
501
- invocationCount?: number;
644
+ invocationCount?:
645
+ number;
502
646
  /** Which list this API appears on */
503
- list?: string;
647
+ list?:
648
+ string;
504
649
  }
505
650
  interface NonSdkApiInsight {
506
651
  /** Optional sample stack traces, for which this insight applies (there should be at least one). */
507
- exampleTraceMessages?: string[];
652
+ exampleTraceMessages?:
653
+ string[];
508
654
  /** A unique ID, to be used for determining the effectiveness of this particular insight in the context of a matcher. (required) */
509
- matcherId?: string;
655
+ matcherId?:
656
+ string;
510
657
  /** An insight indicating that the hidden API usage originates from a Google-provided library. */
511
- pendingGoogleUpdateInsight?: PendingGoogleUpdateInsight;
658
+ pendingGoogleUpdateInsight?:
659
+ PendingGoogleUpdateInsight;
512
660
  /** An insight indicating that the hidden API usage originates from the use of a library that needs to be upgraded. */
513
- upgradeInsight?: UpgradeInsight;
661
+ upgradeInsight?:
662
+ UpgradeInsight;
514
663
  }
515
664
  interface NonSdkApiUsageViolation {
516
665
  /** Signatures of a subset of those hidden API's. */
517
- apiSignatures?: string[];
666
+ apiSignatures?:
667
+ string[];
518
668
  /** Total number of unique hidden API's accessed. */
519
- uniqueApis?: number;
669
+ uniqueApis?:
670
+ number;
520
671
  }
521
672
  interface NonSdkApiUsageViolationReport {
522
673
  /** Examples of the detected API usages. */
523
- exampleApis?: NonSdkApi[];
674
+ exampleApis?:
675
+ NonSdkApi[];
524
676
  /** Minimum API level required for the application to run. */
525
- minSdkVersion?: number;
677
+ minSdkVersion?:
678
+ number;
526
679
  /** Specifies the API Level on which the application is designed to run. */
527
- targetSdkVersion?: number;
680
+ targetSdkVersion?:
681
+ number;
528
682
  /** Total number of unique Non-SDK API's accessed. */
529
- uniqueApis?: number;
683
+ uniqueApis?:
684
+ number;
530
685
  }
531
686
  interface Outcome {
532
687
  /** More information about a FAILURE outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not FAILURE. Optional */
533
- failureDetail?: FailureDetail;
688
+ failureDetail?:
689
+ FailureDetail;
534
690
  /** More information about an INCONCLUSIVE outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not INCONCLUSIVE. Optional */
535
- inconclusiveDetail?: InconclusiveDetail;
691
+ inconclusiveDetail?:
692
+ InconclusiveDetail;
536
693
  /** More information about a SKIPPED outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not SKIPPED. Optional */
537
- skippedDetail?: SkippedDetail;
694
+ skippedDetail?:
695
+ SkippedDetail;
538
696
  /** More information about a SUCCESS outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not SUCCESS. Optional */
539
- successDetail?: SuccessDetail;
697
+ successDetail?:
698
+ SuccessDetail;
540
699
  /** The simplest way to interpret a result. Required */
541
- summary?: string;
700
+ summary?:
701
+ string;
542
702
  }
543
703
  interface OverlappingUIElements {
544
704
  /** Resource names of the overlapping screen elements */
545
- resourceName?: string[];
705
+ resourceName?:
706
+ string[];
546
707
  /** The screen id of the elements */
547
- screenId?: string;
708
+ screenId?:
709
+ string;
548
710
  }
549
711
  interface PendingGoogleUpdateInsight {
550
712
  /** The name of the Google-provided library with the non-SDK API dependency. */
551
- nameOfGoogleLibrary?: string;
713
+ nameOfGoogleLibrary?:
714
+ string;
552
715
  }
553
716
  interface PerfEnvironment {
554
717
  /** CPU related environment info */
555
- cpuInfo?: CPUInfo;
718
+ cpuInfo?:
719
+ CPUInfo;
556
720
  /** Memory related environment info */
557
- memoryInfo?: MemoryInfo;
721
+ memoryInfo?:
722
+ MemoryInfo;
558
723
  }
559
724
  interface PerfMetricsSummary {
560
- appStartTime?: AppStartTime;
725
+ appStartTime?:
726
+ AppStartTime;
561
727
  /** A tool results execution ID. @OutputOnly */
562
- executionId?: string;
728
+ executionId?:
729
+ string;
563
730
  /** Graphics statistics for the entire run. Statistics are reset at the beginning of the run and collected at the end of the run. */
564
- graphicsStats?: GraphicsStats;
731
+ graphicsStats?:
732
+ GraphicsStats;
565
733
  /** A tool results history ID. @OutputOnly */
566
- historyId?: string;
734
+ historyId?:
735
+ string;
567
736
  /** Describes the environment in which the performance metrics were collected */
568
- perfEnvironment?: PerfEnvironment;
737
+ perfEnvironment?:
738
+ PerfEnvironment;
569
739
  /** Set of resource collected */
570
- perfMetrics?: string[];
740
+ perfMetrics?:
741
+ string[];
571
742
  /** The cloud project @OutputOnly */
572
- projectId?: string;
743
+ projectId?:
744
+ string;
573
745
  /** A tool results step ID. @OutputOnly */
574
- stepId?: string;
746
+ stepId?:
747
+ string;
575
748
  }
576
749
  // tslint:disable-next-line:no-empty-interface
577
750
  interface PerformedGoogleLogin {
578
751
  }
579
752
  interface PerformedMonkeyActions {
580
753
  /** The total number of monkey actions performed during the crawl. */
581
- totalActions?: number;
754
+ totalActions?:
755
+ number;
582
756
  }
583
757
  interface PerfSample {
584
758
  /** Timestamp of collection. */
585
- sampleTime?: Timestamp;
759
+ sampleTime?:
760
+ Timestamp;
586
761
  /** Value observed */
587
- value?: number;
762
+ value?:
763
+ number;
588
764
  }
589
765
  interface PerfSampleSeries {
590
766
  /** Basic series represented by a line chart */
591
- basicPerfSampleSeries?: BasicPerfSampleSeries;
767
+ basicPerfSampleSeries?:
768
+ BasicPerfSampleSeries;
592
769
  /** A tool results execution ID. @OutputOnly */
593
- executionId?: string;
770
+ executionId?:
771
+ string;
594
772
  /** A tool results history ID. @OutputOnly */
595
- historyId?: string;
773
+ historyId?:
774
+ string;
596
775
  /** The cloud project @OutputOnly */
597
- projectId?: string;
776
+ projectId?:
777
+ string;
598
778
  /** A sample series id @OutputOnly */
599
- sampleSeriesId?: string;
779
+ sampleSeriesId?:
780
+ string;
600
781
  /** A tool results step ID. @OutputOnly */
601
- stepId?: string;
782
+ stepId?:
783
+ string;
602
784
  }
603
785
  interface PrimaryStep {
604
786
  /** Step Id and outcome of each individual step. */
605
- individualOutcome?: IndividualOutcome[];
787
+ individualOutcome?:
788
+ IndividualOutcome[];
606
789
  /** Rollup test status of multiple steps that were run with the same configuration as a group. */
607
- rollUp?: string;
790
+ rollUp?:
791
+ string;
608
792
  }
609
793
  interface ProjectSettings {
610
794
  /** The name of the Google Cloud Storage bucket to which results are written. By default, this is unset. In update request: optional In response: optional */
611
- defaultBucket?: string;
795
+ defaultBucket?:
796
+ string;
612
797
  /** The name of the project's settings. Always of the form: projects/{project-id}/settings In update request: never set In response: always set */
613
- name?: string;
798
+ name?:
799
+ string;
614
800
  }
615
801
  interface PublishXunitXmlFilesRequest {
616
802
  /** URI of the Xunit XML files to publish. The maximum size of the file this reference is pointing to is 50MB. Required. */
617
- xunitXmlFiles?: FileReference[];
803
+ xunitXmlFiles?:
804
+ FileReference[];
618
805
  }
619
806
  interface RegionProto {
620
807
  /** The height, in pixels. Always set. */
621
- heightPx?: number;
808
+ heightPx?:
809
+ number;
622
810
  /** The left side of the rectangle, in pixels. Always set. */
623
- leftPx?: number;
811
+ leftPx?:
812
+ number;
624
813
  /** The top of the rectangle, in pixels. Always set. */
625
- topPx?: number;
814
+ topPx?:
815
+ number;
626
816
  /** The width, in pixels. Always set. */
627
- widthPx?: number;
817
+ widthPx?:
818
+ number;
628
819
  }
629
820
  interface ResultsStorage {
630
821
  /** The root directory for test results. */
631
- resultsStoragePath?: FileReference;
822
+ resultsStoragePath?:
823
+ FileReference;
632
824
  /** The path to the Xunit XML file. */
633
- xunitXmlFile?: FileReference;
825
+ xunitXmlFile?:
826
+ FileReference;
634
827
  }
635
828
  interface RoboScriptExecution {
636
829
  /** The number of Robo script actions executed successfully. */
637
- successfulActions?: number;
830
+ successfulActions?:
831
+ number;
638
832
  /** The total number of actions in the Robo script. */
639
- totalActions?: number;
833
+ totalActions?:
834
+ number;
640
835
  }
641
836
  interface SafeHtmlProto {
642
837
  /**
643
838
  * IMPORTANT: Never set or read this field, even from tests, it is private. See documentation at the top of .proto file for programming language packages with which to create or read
644
839
  * this message.
645
840
  */
646
- privateDoNotAccessOrElseSafeHtmlWrappedValue?: string;
841
+ privateDoNotAccessOrElseSafeHtmlWrappedValue?:
842
+ string;
647
843
  }
648
844
  interface Screen {
649
845
  /** File reference of the png file. Required. */
650
- fileReference?: string;
846
+ fileReference?:
847
+ string;
651
848
  /** Locale of the device that the screenshot was taken on. Required. */
652
- locale?: string;
849
+ locale?:
850
+ string;
653
851
  /** Model of the device that the screenshot was taken on. Required. */
654
- model?: string;
852
+ model?:
853
+ string;
655
854
  /** OS version of the device that the screenshot was taken on. Required. */
656
- version?: string;
855
+ version?:
856
+ string;
657
857
  }
658
858
  interface ScreenshotCluster {
659
859
  /** A string that describes the activity of every screen in the cluster. */
660
- activity?: string;
860
+ activity?:
861
+ string;
661
862
  /** A unique identifier for the cluster. @OutputOnly */
662
- clusterId?: string;
863
+ clusterId?:
864
+ string;
663
865
  /**
664
866
  * A singular screen that represents the cluster as a whole. This screen will act as the "cover" of the entire cluster. When users look at the clusters, only the key screen from each
665
867
  * cluster will be shown. Which screen is the key screen is determined by the ClusteringAlgorithm
666
868
  */
667
- keyScreen?: Screen;
869
+ keyScreen?:
870
+ Screen;
668
871
  /** Full list of screens. */
669
- screens?: Screen[];
872
+ screens?:
873
+ Screen[];
670
874
  }
671
875
  interface ShardSummary {
672
876
  /**
673
877
  * Summaries of the steps belonging to the shard. With flaky_test_attempts enabled from TestExecutionService, more than one run (Step) can present. And the runs will be sorted by
674
878
  * multistep_number.
675
879
  */
676
- runs?: any[];
880
+ runs?:
881
+ any[];
677
882
  /** Merged result of the shard. */
678
- shardResult?: MergedResult;
883
+ shardResult?:
884
+ MergedResult;
679
885
  }
680
886
  interface SkippedDetail {
681
887
  /** If the App doesn't support the specific API level. */
682
- incompatibleAppVersion?: boolean;
888
+ incompatibleAppVersion?:
889
+ boolean;
683
890
  /** If the App doesn't run on the specific architecture, for example, x86. */
684
- incompatibleArchitecture?: boolean;
891
+ incompatibleArchitecture?:
892
+ boolean;
685
893
  /** If the requested OS version doesn't run on the specific device model. */
686
- incompatibleDevice?: boolean;
894
+ incompatibleDevice?:
895
+ boolean;
687
896
  }
688
897
  interface Specification {
689
898
  /** An Android mobile test execution specification. */
690
- androidTest?: AndroidTest;
899
+ androidTest?:
900
+ AndroidTest;
691
901
  /** An iOS mobile test execution specification. */
692
- iosTest?: IosTest;
902
+ iosTest?:
903
+ IosTest;
693
904
  }
694
905
  interface StackTrace {
695
906
  /** The stack trace message. Required */
696
- exception?: string;
907
+ exception?:
908
+ string;
697
909
  }
698
910
  interface StartActivityNotFound {
699
- action?: string;
700
- uri?: string;
911
+ action?:
912
+ string;
913
+ uri?:
914
+ string;
701
915
  }
702
916
  interface Status {
703
917
  /** The status code, which should be an enum value of google.rpc.Code. */
704
- code?: number;
918
+ code?:
919
+ number;
705
920
  /** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
706
- details?: Array<{ [P in string]: any }>;
921
+ details?:
922
+ Array<{ [P in string]: any }>;
707
923
  /**
708
924
  * A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the
709
925
  * client.
710
926
  */
711
- message?: string;
927
+ message?:
928
+ string;
712
929
  }
713
930
  interface Step {
714
931
  /**
715
932
  * The time when the step status was set to complete. This value will be set automatically when state transitions to COMPLETE. - In response: set if the execution state is COMPLETE. -
716
933
  * In create/update request: never set
717
934
  */
718
- completionTime?: Timestamp;
935
+ completionTime?:
936
+ Timestamp;
719
937
  /** The time when the step was created. - In response: always set - In create/update request: never set */
720
- creationTime?: Timestamp;
938
+ creationTime?:
939
+ Timestamp;
721
940
  /** A description of this tool For example: mvn clean package -D skipTests=true - In response: present if set by create/update request - In create/update request: optional */
722
- description?: string;
941
+ description?:
942
+ string;
723
943
  /**
724
944
  * How much the device resource is used to perform the test. This is the device usage used for billing purpose, which is different from the run_duration, for example, infrastructure
725
945
  * failure won't be charged for device usage. PRECONDITION_FAILED will be returned if one attempts to set a device_usage on a step which already has this field set. - In response:
726
946
  * present if previously set. - In create request: optional - In update request: optional
727
947
  */
728
- deviceUsageDuration?: Duration;
948
+ deviceUsageDuration?:
949
+ Duration;
729
950
  /**
730
951
  * If the execution containing this step has any dimension_definition set, then this field allows the child to specify the values of the dimensions. The keys must exactly match the
731
952
  * dimension_definition of the execution. For example, if the execution has `dimension_definition = ['attempt', 'device']` then a step must define values for those dimensions, eg.
@@ -736,318 +957,415 @@ declare namespace gapi.client {
736
957
  * data fields, for example, step field is different. A PRECONDITION_FAILED will be returned if dimension_value is set, and there is a dimension_definition in the execution which is
737
958
  * not specified as one of the keys. - In response: present if set by create - In create request: optional - In update request: never set
738
959
  */
739
- dimensionValue?: StepDimensionValueEntry[];
960
+ dimensionValue?:
961
+ StepDimensionValueEntry[];
740
962
  /** Whether any of the outputs of this step are images whose thumbnails can be fetched with ListThumbnails. - In response: always set - In create/update request: never set */
741
- hasImages?: boolean;
963
+ hasImages?:
964
+ boolean;
742
965
  /**
743
966
  * Arbitrary user-supplied key/value pairs that are associated with the step. Users are responsible for managing the key namespace such that keys don't accidentally collide. An
744
967
  * INVALID_ARGUMENT will be returned if the number of labels exceeds 100 or if the length of any of the keys or values exceeds 100 characters. - In response: always set - In create
745
968
  * request: optional - In update request: optional; any new key/value pair will be added to the map, and any new value for an existing key will update that key's value
746
969
  */
747
- labels?: StepLabelsEntry[];
970
+ labels?:
971
+ StepLabelsEntry[];
748
972
  /**
749
973
  * Details when multiple steps are run with the same configuration as a group. These details can be used identify which group this step is part of. It also identifies the groups
750
974
  * 'primary step' which indexes all the group members. - In response: present if previously set. - In create request: optional, set iff this step was performed more than once. - In
751
975
  * update request: optional
752
976
  */
753
- multiStep?: MultiStep;
977
+ multiStep?:
978
+ MultiStep;
754
979
  /**
755
980
  * A short human-readable name to display in the UI. Maximum of 100 characters. For example: Clean build A PRECONDITION_FAILED will be returned upon creating a new step if it shares
756
981
  * its name and dimension_value with an existing step. If two steps represent a similar action, but have different dimension values, they should share the same name. For instance, if
757
982
  * the same set of tests is run on two different platforms, the two steps should have the same name. - In response: always set - In create request: always set - In update request:
758
983
  * never set
759
984
  */
760
- name?: string;
985
+ name?:
986
+ string;
761
987
  /** Classification of the result, for example into SUCCESS or FAILURE - In response: present if set by create/update request - In create/update request: optional */
762
- outcome?: Outcome;
988
+ outcome?:
989
+ Outcome;
763
990
  /**
764
991
  * How long it took for this step to run. If unset, this is set to the difference between creation_time and completion_time when the step is set to the COMPLETE state. In some cases,
765
992
  * it is appropriate to set this value separately: For instance, if a step is created, but the operation it represents is queued for a few minutes before it executes, it would be
766
993
  * appropriate not to include the time spent queued in its run_duration. PRECONDITION_FAILED will be returned if one attempts to set a run_duration on a step which already has this
767
994
  * field set. - In response: present if previously set; always present on COMPLETE step - In create request: optional - In update request: optional
768
995
  */
769
- runDuration?: Duration;
996
+ runDuration?:
997
+ Duration;
770
998
  /**
771
999
  * The initial state is IN_PROGRESS. The only legal state transitions are * IN_PROGRESS -> COMPLETE A PRECONDITION_FAILED will be returned if an invalid transition is requested. It is
772
1000
  * valid to create Step with a state set to COMPLETE. The state can only be set to COMPLETE once. A PRECONDITION_FAILED will be returned if the state is set to COMPLETE multiple times.
773
1001
  * - In response: always set - In create/update request: optional
774
1002
  */
775
- state?: string;
1003
+ state?:
1004
+ string;
776
1005
  /**
777
1006
  * A unique identifier within a Execution for this Step. Returns INVALID_ARGUMENT if this field is set or overwritten by the caller. - In response: always set - In create/update
778
1007
  * request: never set
779
1008
  */
780
- stepId?: string;
1009
+ stepId?:
1010
+ string;
781
1011
  /** An execution of a test runner. */
782
- testExecutionStep?: TestExecutionStep;
1012
+ testExecutionStep?:
1013
+ TestExecutionStep;
783
1014
  /** An execution of a tool (used for steps we don't explicitly support). */
784
- toolExecutionStep?: ToolExecutionStep;
1015
+ toolExecutionStep?:
1016
+ ToolExecutionStep;
785
1017
  }
786
1018
  interface StepDimensionValueEntry {
787
- key?: string;
788
- value?: string;
1019
+ key?:
1020
+ string;
1021
+ value?:
1022
+ string;
789
1023
  }
790
1024
  interface StepLabelsEntry {
791
- key?: string;
792
- value?: string;
1025
+ key?:
1026
+ string;
1027
+ value?:
1028
+ string;
793
1029
  }
794
1030
  // tslint:disable-next-line:no-empty-interface
795
1031
  interface StepSummary {
796
1032
  }
797
1033
  interface SuccessDetail {
798
1034
  /** If a native process other than the app crashed. */
799
- otherNativeCrash?: boolean;
1035
+ otherNativeCrash?:
1036
+ boolean;
800
1037
  }
801
1038
  interface SuggestionClusterProto {
802
1039
  /** Category in which these types of suggestions should appear. Always set. */
803
- category?: string;
1040
+ category?:
1041
+ string;
804
1042
  /**
805
1043
  * A sequence of suggestions. All of the suggestions within a cluster must have the same SuggestionPriority and belong to the same SuggestionCategory. Suggestions with the same
806
1044
  * screenshot URL should be adjacent.
807
1045
  */
808
- suggestions?: SuggestionProto[];
1046
+ suggestions?:
1047
+ SuggestionProto[];
809
1048
  }
810
1049
  interface SuggestionProto {
811
1050
  /** Reference to a help center article concerning this type of suggestion. Always set. */
812
- helpUrl?: string;
1051
+ helpUrl?:
1052
+ string;
813
1053
  /** Message, in the user's language, explaining the suggestion, which may contain markup. Always set. */
814
- longMessage?: SafeHtmlProto;
1054
+ longMessage?:
1055
+ SafeHtmlProto;
815
1056
  /** Relative importance of a suggestion. Always set. */
816
- priority?: string;
1057
+ priority?:
1058
+ string;
817
1059
  /**
818
1060
  * A somewhat human readable identifier of the source view, if it does not have a resource_name. This is a path within the accessibility hierarchy, an element with resource name;
819
1061
  * similar to an XPath.
820
1062
  */
821
- pseudoResourceId?: string;
1063
+ pseudoResourceId?:
1064
+ string;
822
1065
  /** Region within the screenshot that is relevant to this suggestion. Optional. */
823
- region?: RegionProto;
1066
+ region?:
1067
+ RegionProto;
824
1068
  /** Reference to a view element, identified by its resource name, if it has one. */
825
- resourceName?: string;
1069
+ resourceName?:
1070
+ string;
826
1071
  /** ID of the screen for the suggestion. It is used for getting the corresponding screenshot path. For example, screen_id "1" corresponds to "1.png" file in GCS. Always set. */
827
- screenId?: string;
1072
+ screenId?:
1073
+ string;
828
1074
  /**
829
1075
  * Relative importance of a suggestion as compared with other suggestions that have the same priority and category. This is a meaningless value that can be used to order suggestions
830
1076
  * that are in the same category and have the same priority. The larger values have higher priority (i.e., are more important). Optional.
831
1077
  */
832
- secondaryPriority?: number;
1078
+ secondaryPriority?:
1079
+ number;
833
1080
  /** Concise message, in the user's language, representing the suggestion, which may contain markup. Always set. */
834
- shortMessage?: SafeHtmlProto;
1081
+ shortMessage?:
1082
+ SafeHtmlProto;
835
1083
  /** General title for the suggestion, in the user's language, without markup. Always set. */
836
- title?: string;
1084
+ title?:
1085
+ string;
837
1086
  }
838
1087
  interface TestCase {
839
1088
  /** The elapsed run time of the test case. Required. */
840
- elapsedTime?: Duration;
1089
+ elapsedTime?:
1090
+ Duration;
841
1091
  /** The end time of the test case. */
842
- endTime?: Timestamp;
1092
+ endTime?:
1093
+ Timestamp;
843
1094
  /** Why the test case was skipped. Present only for skipped test case */
844
- skippedMessage?: string;
1095
+ skippedMessage?:
1096
+ string;
845
1097
  /**
846
1098
  * The stack trace details if the test case failed or encountered an error. The maximum size of the stack traces is 100KiB, beyond which the stack track will be truncated. Zero if the
847
1099
  * test case passed.
848
1100
  */
849
- stackTraces?: StackTrace[];
1101
+ stackTraces?:
1102
+ StackTrace[];
850
1103
  /** The start time of the test case. */
851
- startTime?: Timestamp;
1104
+ startTime?:
1105
+ Timestamp;
852
1106
  /** The status of the test case. Required. */
853
- status?: string;
1107
+ status?:
1108
+ string;
854
1109
  /** A unique identifier within a Step for this Test Case. */
855
- testCaseId?: string;
1110
+ testCaseId?:
1111
+ string;
856
1112
  /** Test case reference, e.g. name, class name and test suite name. Required. */
857
- testCaseReference?: TestCaseReference;
1113
+ testCaseReference?:
1114
+ TestCaseReference;
858
1115
  /** References to opaque files of any format output by the tool execution. @OutputOnly */
859
- toolOutputs?: ToolOutputReference[];
1116
+ toolOutputs?:
1117
+ ToolOutputReference[];
860
1118
  }
861
1119
  interface TestCaseReference {
862
1120
  /** The name of the class. */
863
- className?: string;
1121
+ className?:
1122
+ string;
864
1123
  /** The name of the test case. Required. */
865
- name?: string;
1124
+ name?:
1125
+ string;
866
1126
  /** The name of the test suite to which this test case belongs. */
867
- testSuiteName?: string;
1127
+ testSuiteName?:
1128
+ string;
868
1129
  }
869
1130
  interface TestExecutionStep {
870
1131
  /**
871
1132
  * Issues observed during the test execution. For example, if the mobile app under test crashed during the test, the error message and the stack trace content can be recorded here to
872
1133
  * assist debugging. - In response: present if set by create or update - In create/update request: optional
873
1134
  */
874
- testIssues?: TestIssue[];
1135
+ testIssues?:
1136
+ TestIssue[];
875
1137
  /**
876
1138
  * List of test suite overview contents. This could be parsed from xUnit XML log by server, or uploaded directly by user. This references should only be called when test suites are
877
1139
  * fully parsed or uploaded. The maximum allowed number of test suite overviews per step is 1000. - In response: always set - In create request: optional - In update request: never
878
1140
  * (use publishXunitXmlFiles custom method instead)
879
1141
  */
880
- testSuiteOverviews?: TestSuiteOverview[];
1142
+ testSuiteOverviews?:
1143
+ TestSuiteOverview[];
881
1144
  /** The timing break down of the test execution. - In response: present if set by create or update - In create/update request: optional */
882
- testTiming?: TestTiming;
1145
+ testTiming?:
1146
+ TestTiming;
883
1147
  /** Represents the execution of the test runner. The exit code of this tool will be used to determine if the test passed. - In response: always set - In create/update request: optional */
884
- toolExecution?: ToolExecution;
1148
+ toolExecution?:
1149
+ ToolExecution;
885
1150
  }
886
1151
  interface TestIssue {
887
1152
  /** Category of issue. Required. */
888
- category?: string;
1153
+ category?:
1154
+ string;
889
1155
  /** A brief human-readable message describing the issue. Required. */
890
- errorMessage?: string;
1156
+ errorMessage?:
1157
+ string;
891
1158
  /** Severity of issue. Required. */
892
- severity?: string;
1159
+ severity?:
1160
+ string;
893
1161
  /** Deprecated in favor of stack trace fields inside specific warnings. */
894
- stackTrace?: StackTrace;
1162
+ stackTrace?:
1163
+ StackTrace;
895
1164
  /** Type of issue. Required. */
896
- type?: string;
1165
+ type?:
1166
+ string;
897
1167
  /** Warning message with additional details of the issue. Should always be a message from com.google.devtools.toolresults.v1.warnings */
898
- warning?: Any;
1168
+ warning?:
1169
+ Any;
899
1170
  }
900
1171
  interface TestSuiteOverview {
901
1172
  /** Elapsed time of test suite. */
902
- elapsedTime?: Duration;
1173
+ elapsedTime?:
1174
+ Duration;
903
1175
  /** Number of test cases in error, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never */
904
- errorCount?: number;
1176
+ errorCount?:
1177
+ number;
905
1178
  /** Number of failed test cases, typically set by the service by parsing the xml_source. May also be set by the user. - In create/response: always set - In update request: never */
906
- failureCount?: number;
1179
+ failureCount?:
1180
+ number;
907
1181
  /**
908
1182
  * Number of flaky test cases, set by the service by rolling up flaky test attempts. Present only for rollup test suite overview at environment level. A step cannot have flaky test
909
1183
  * cases.
910
1184
  */
911
- flakyCount?: number;
1185
+ flakyCount?:
1186
+ number;
912
1187
  /** The name of the test suite. - In create/response: always set - In update request: never */
913
- name?: string;
1188
+ name?:
1189
+ string;
914
1190
  /** Number of test cases not run, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never */
915
- skippedCount?: number;
1191
+ skippedCount?:
1192
+ number;
916
1193
  /** Number of test cases, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never */
917
- totalCount?: number;
1194
+ totalCount?:
1195
+ number;
918
1196
  /**
919
1197
  * If this test suite was parsed from XML, this is the URI where the original XML file is stored. Note: Multiple test suites can share the same xml_source Returns INVALID_ARGUMENT if
920
1198
  * the uri format is not supported. - In create/response: optional - In update request: never
921
1199
  */
922
- xmlSource?: FileReference;
1200
+ xmlSource?:
1201
+ FileReference;
923
1202
  }
924
1203
  interface TestTiming {
925
1204
  /** How long it took to run the test process. - In response: present if previously set. - In create/update request: optional */
926
- testProcessDuration?: Duration;
1205
+ testProcessDuration?:
1206
+ Duration;
927
1207
  }
928
1208
  interface Thumbnail {
929
1209
  /** The thumbnail's content type, i.e. "image/png". Always set. */
930
- contentType?: string;
1210
+ contentType?:
1211
+ string;
931
1212
  /**
932
1213
  * The thumbnail file itself. That is, the bytes here are precisely the bytes that make up the thumbnail file; they can be served as an image as-is (with the appropriate content type.)
933
1214
  * Always set.
934
1215
  */
935
- data?: string;
1216
+ data?:
1217
+ string;
936
1218
  /** The height of the thumbnail, in pixels. Always set. */
937
- heightPx?: number;
1219
+ heightPx?:
1220
+ number;
938
1221
  /** The width of the thumbnail, in pixels. Always set. */
939
- widthPx?: number;
1222
+ widthPx?:
1223
+ number;
940
1224
  }
941
1225
  interface Timestamp {
942
1226
  /**
943
1227
  * Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from
944
1228
  * 0 to 999,999,999 inclusive.
945
1229
  */
946
- nanos?: number;
1230
+ nanos?:
1231
+ number;
947
1232
  /** Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive. */
948
- seconds?: string;
1233
+ seconds?:
1234
+ string;
949
1235
  }
950
1236
  interface ToolExecution {
951
1237
  /**
952
1238
  * The full tokenized command line including the program name (equivalent to argv in a C program). - In response: present if set by create request - In create request: optional - In
953
1239
  * update request: never set
954
1240
  */
955
- commandLineArguments?: string[];
1241
+ commandLineArguments?:
1242
+ string[];
956
1243
  /**
957
1244
  * Tool execution exit code. This field will be set once the tool has exited. - In response: present if set by create/update request - In create request: optional - In update request:
958
1245
  * optional, a FAILED_PRECONDITION error will be returned if an exit_code is already set.
959
1246
  */
960
- exitCode?: ToolExitCode;
1247
+ exitCode?:
1248
+ ToolExitCode;
961
1249
  /**
962
1250
  * References to any plain text logs output the tool execution. This field can be set before the tool has exited in order to be able to have access to a live view of the logs while the
963
1251
  * tool is running. The maximum allowed number of tool logs per step is 1000. - In response: present if set by create/update request - In create request: optional - In update request:
964
1252
  * optional, any value provided will be appended to the existing list
965
1253
  */
966
- toolLogs?: FileReference[];
1254
+ toolLogs?:
1255
+ FileReference[];
967
1256
  /**
968
1257
  * References to opaque files of any format output by the tool execution. The maximum allowed number of tool outputs per step is 1000. - In response: present if set by create/update
969
1258
  * request - In create request: optional - In update request: optional, any value provided will be appended to the existing list
970
1259
  */
971
- toolOutputs?: ToolOutputReference[];
1260
+ toolOutputs?:
1261
+ ToolOutputReference[];
972
1262
  }
973
1263
  interface ToolExecutionStep {
974
1264
  /** A Tool execution. - In response: present if set by create/update request - In create/update request: optional */
975
- toolExecution?: ToolExecution;
1265
+ toolExecution?:
1266
+ ToolExecution;
976
1267
  }
977
1268
  interface ToolExitCode {
978
1269
  /** Tool execution exit code. A value of 0 means that the execution was successful. - In response: always set - In create/update request: always set */
979
- number?: number;
1270
+ number?:
1271
+ number;
980
1272
  }
981
1273
  interface ToolOutputReference {
982
1274
  /** The creation time of the file. - In response: present if set by create/update request - In create/update request: optional */
983
- creationTime?: Timestamp;
1275
+ creationTime?:
1276
+ Timestamp;
984
1277
  /** A FileReference to an output file. - In response: always set - In create/update request: always set */
985
- output?: FileReference;
1278
+ output?:
1279
+ FileReference;
986
1280
  /** The test case to which this output file belongs. - In response: present if set by create/update request - In create/update request: optional */
987
- testCase?: TestCaseReference;
1281
+ testCase?:
1282
+ TestCaseReference;
988
1283
  }
989
1284
  interface UIElementTooDeep {
990
1285
  /** The depth of the screen element */
991
- depth?: number;
1286
+ depth?:
1287
+ number;
992
1288
  /** The screen id of the element */
993
- screenId?: string;
1289
+ screenId?:
1290
+ string;
994
1291
  /** The screen state id of the element */
995
- screenStateId?: string;
1292
+ screenStateId?:
1293
+ string;
996
1294
  }
997
1295
  // tslint:disable-next-line:no-empty-interface
998
1296
  interface UnspecifiedWarning {
999
1297
  }
1000
1298
  interface UnusedRoboDirective {
1001
1299
  /** The name of the resource that was unused. */
1002
- resourceName?: string;
1300
+ resourceName?:
1301
+ string;
1003
1302
  }
1004
1303
  interface UpgradeInsight {
1005
1304
  /** The name of the package to be upgraded. */
1006
- packageName?: string;
1305
+ packageName?:
1306
+ string;
1007
1307
  /** The suggested version to upgrade to. Optional: In case we are not sure which version solves this problem */
1008
- upgradeToVersion?: string;
1308
+ upgradeToVersion?:
1309
+ string;
1009
1310
  }
1010
1311
  interface UsedRoboDirective {
1011
1312
  /** The name of the resource that was used. */
1012
- resourceName?: string;
1313
+ resourceName?:
1314
+ string;
1013
1315
  }
1014
1316
  interface UsedRoboIgnoreDirective {
1015
1317
  /** The name of the resource that was ignored. */
1016
- resourceName?: string;
1318
+ resourceName?:
1319
+ string;
1017
1320
  }
1018
1321
  interface ClustersResource {
1019
1322
  /** Retrieves a single screenshot cluster by its ID */
1020
1323
  get(request?: {
1021
1324
  /** V1 error format. */
1022
- "$.xgafv"?: string;
1325
+ "$.xgafv"?:
1326
+ string;
1023
1327
  /** OAuth access token. */
1024
- access_token?: string;
1328
+ access_token?:
1329
+ string;
1025
1330
  /** Data format for response. */
1026
- alt?: string;
1331
+ alt?:
1332
+ string;
1027
1333
  /** JSONP */
1028
- callback?: string;
1334
+ callback?:
1335
+ string;
1029
1336
  /** A Cluster id Required. */
1030
- clusterId: string;
1337
+ clusterId:
1338
+ string;
1031
1339
  /** An Execution id. Required. */
1032
- executionId: string;
1340
+ executionId:
1341
+ string;
1033
1342
  /** Selector specifying which fields to include in a partial response. */
1034
- fields?: string;
1343
+ fields?:
1344
+ string;
1035
1345
  /** A History id. Required. */
1036
- historyId: string;
1346
+ historyId:
1347
+ string;
1037
1348
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1038
- key?: string;
1349
+ key?:
1350
+ string;
1039
1351
  /** OAuth 2.0 token for the current user. */
1040
- oauth_token?: string;
1352
+ oauth_token?:
1353
+ string;
1041
1354
  /** Returns response with indentations and line breaks. */
1042
- prettyPrint?: boolean;
1355
+ prettyPrint?:
1356
+ boolean;
1043
1357
  /** A Project id. Required. */
1044
- projectId: string;
1358
+ projectId:
1359
+ string;
1045
1360
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1046
- quotaUser?: string;
1361
+ quotaUser?:
1362
+ string;
1047
1363
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1048
- upload_protocol?: string;
1364
+ upload_protocol?:
1365
+ string;
1049
1366
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1050
- uploadType?: string;
1367
+ uploadType?:
1368
+ string;
1051
1369
  }): Request<ScreenshotCluster>;
1052
1370
  /**
1053
1371
  * Lists Screenshot Clusters Returns the list of screenshot clusters corresponding to an execution. Screenshot clusters are created after the execution is finished. Clusters are
@@ -1056,33 +1374,47 @@ declare namespace gapi.client {
1056
1374
  */
1057
1375
  list(request?: {
1058
1376
  /** V1 error format. */
1059
- "$.xgafv"?: string;
1377
+ "$.xgafv"?:
1378
+ string;
1060
1379
  /** OAuth access token. */
1061
- access_token?: string;
1380
+ access_token?:
1381
+ string;
1062
1382
  /** Data format for response. */
1063
- alt?: string;
1383
+ alt?:
1384
+ string;
1064
1385
  /** JSONP */
1065
- callback?: string;
1386
+ callback?:
1387
+ string;
1066
1388
  /** An Execution id. Required. */
1067
- executionId: string;
1389
+ executionId:
1390
+ string;
1068
1391
  /** Selector specifying which fields to include in a partial response. */
1069
- fields?: string;
1392
+ fields?:
1393
+ string;
1070
1394
  /** A History id. Required. */
1071
- historyId: string;
1395
+ historyId:
1396
+ string;
1072
1397
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1073
- key?: string;
1398
+ key?:
1399
+ string;
1074
1400
  /** OAuth 2.0 token for the current user. */
1075
- oauth_token?: string;
1401
+ oauth_token?:
1402
+ string;
1076
1403
  /** Returns response with indentations and line breaks. */
1077
- prettyPrint?: boolean;
1404
+ prettyPrint?:
1405
+ boolean;
1078
1406
  /** A Project id. Required. */
1079
- projectId: string;
1407
+ projectId:
1408
+ string;
1080
1409
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1081
- quotaUser?: string;
1410
+ quotaUser?:
1411
+ string;
1082
1412
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1083
- upload_protocol?: string;
1413
+ upload_protocol?:
1414
+ string;
1084
1415
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1085
- uploadType?: string;
1416
+ uploadType?:
1417
+ string;
1086
1418
  }): Request<ListScreenshotClustersResponse>;
1087
1419
  }
1088
1420
  interface EnvironmentsResource {
@@ -1092,35 +1424,50 @@ declare namespace gapi.client {
1092
1424
  */
1093
1425
  get(request?: {
1094
1426
  /** V1 error format. */
1095
- "$.xgafv"?: string;
1427
+ "$.xgafv"?:
1428
+ string;
1096
1429
  /** OAuth access token. */
1097
- access_token?: string;
1430
+ access_token?:
1431
+ string;
1098
1432
  /** Data format for response. */
1099
- alt?: string;
1433
+ alt?:
1434
+ string;
1100
1435
  /** JSONP */
1101
- callback?: string;
1436
+ callback?:
1437
+ string;
1102
1438
  /** Required. An Environment id. */
1103
- environmentId: string;
1439
+ environmentId:
1440
+ string;
1104
1441
  /** Required. An Execution id. */
1105
- executionId: string;
1442
+ executionId:
1443
+ string;
1106
1444
  /** Selector specifying which fields to include in a partial response. */
1107
- fields?: string;
1445
+ fields?:
1446
+ string;
1108
1447
  /** Required. A History id. */
1109
- historyId: string;
1448
+ historyId:
1449
+ string;
1110
1450
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1111
- key?: string;
1451
+ key?:
1452
+ string;
1112
1453
  /** OAuth 2.0 token for the current user. */
1113
- oauth_token?: string;
1454
+ oauth_token?:
1455
+ string;
1114
1456
  /** Returns response with indentations and line breaks. */
1115
- prettyPrint?: boolean;
1457
+ prettyPrint?:
1458
+ boolean;
1116
1459
  /** Required. A Project id. */
1117
- projectId: string;
1460
+ projectId:
1461
+ string;
1118
1462
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1119
- quotaUser?: string;
1463
+ quotaUser?:
1464
+ string;
1120
1465
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1121
- upload_protocol?: string;
1466
+ upload_protocol?:
1467
+ string;
1122
1468
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1123
- uploadType?: string;
1469
+ uploadType?:
1470
+ string;
1124
1471
  }): Request<Environment>;
1125
1472
  /**
1126
1473
  * Lists Environments for a given Execution. The Environments are sorted by display name. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is
@@ -1128,37 +1475,53 @@ declare namespace gapi.client {
1128
1475
  */
1129
1476
  list(request?: {
1130
1477
  /** V1 error format. */
1131
- "$.xgafv"?: string;
1478
+ "$.xgafv"?:
1479
+ string;
1132
1480
  /** OAuth access token. */
1133
- access_token?: string;
1481
+ access_token?:
1482
+ string;
1134
1483
  /** Data format for response. */
1135
- alt?: string;
1484
+ alt?:
1485
+ string;
1136
1486
  /** JSONP */
1137
- callback?: string;
1487
+ callback?:
1488
+ string;
1138
1489
  /** Required. An Execution id. */
1139
- executionId: string;
1490
+ executionId:
1491
+ string;
1140
1492
  /** Selector specifying which fields to include in a partial response. */
1141
- fields?: string;
1493
+ fields?:
1494
+ string;
1142
1495
  /** Required. A History id. */
1143
- historyId: string;
1496
+ historyId:
1497
+ string;
1144
1498
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1145
- key?: string;
1499
+ key?:
1500
+ string;
1146
1501
  /** OAuth 2.0 token for the current user. */
1147
- oauth_token?: string;
1502
+ oauth_token?:
1503
+ string;
1148
1504
  /** The maximum number of Environments to fetch. Default value: 25. The server will use this default if the field is not set or has a value of 0. */
1149
- pageSize?: number;
1505
+ pageSize?:
1506
+ number;
1150
1507
  /** A continuation token to resume the query at the next item. */
1151
- pageToken?: string;
1508
+ pageToken?:
1509
+ string;
1152
1510
  /** Returns response with indentations and line breaks. */
1153
- prettyPrint?: boolean;
1511
+ prettyPrint?:
1512
+ boolean;
1154
1513
  /** Required. A Project id. */
1155
- projectId: string;
1514
+ projectId:
1515
+ string;
1156
1516
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1157
- quotaUser?: string;
1517
+ quotaUser?:
1518
+ string;
1158
1519
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1159
- upload_protocol?: string;
1520
+ upload_protocol?:
1521
+ string;
1160
1522
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1161
- uploadType?: string;
1523
+ uploadType?:
1524
+ string;
1162
1525
  }): Request<ListEnvironmentsResponse>;
1163
1526
  }
1164
1527
  interface PerfMetricsSummaryResource {
@@ -1168,69 +1531,100 @@ declare namespace gapi.client {
1168
1531
  */
1169
1532
  create(request: {
1170
1533
  /** V1 error format. */
1171
- "$.xgafv"?: string;
1534
+ "$.xgafv"?:
1535
+ string;
1172
1536
  /** OAuth access token. */
1173
- access_token?: string;
1537
+ access_token?:
1538
+ string;
1174
1539
  /** Data format for response. */
1175
- alt?: string;
1540
+ alt?:
1541
+ string;
1176
1542
  /** JSONP */
1177
- callback?: string;
1543
+ callback?:
1544
+ string;
1178
1545
  /** A tool results execution ID. */
1179
- executionId: string;
1546
+ executionId:
1547
+ string;
1180
1548
  /** Selector specifying which fields to include in a partial response. */
1181
- fields?: string;
1549
+ fields?:
1550
+ string;
1182
1551
  /** A tool results history ID. */
1183
- historyId: string;
1552
+ historyId:
1553
+ string;
1184
1554
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1185
- key?: string;
1555
+ key?:
1556
+ string;
1186
1557
  /** OAuth 2.0 token for the current user. */
1187
- oauth_token?: string;
1558
+ oauth_token?:
1559
+ string;
1188
1560
  /** Returns response with indentations and line breaks. */
1189
- prettyPrint?: boolean;
1561
+ prettyPrint?:
1562
+ boolean;
1190
1563
  /** The cloud project */
1191
- projectId: string;
1564
+ projectId:
1565
+ string;
1192
1566
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1193
- quotaUser?: string;
1567
+ quotaUser?:
1568
+ string;
1194
1569
  /** A tool results step ID. */
1195
- stepId: string;
1570
+ stepId:
1571
+ string;
1196
1572
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1197
- upload_protocol?: string;
1573
+ upload_protocol?:
1574
+ string;
1198
1575
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1199
- uploadType?: string;
1576
+ uploadType?:
1577
+ string;
1200
1578
  /** Request body */
1201
- resource: PerfMetricsSummary;
1579
+ resource:
1580
+ PerfMetricsSummary;
1202
1581
  }): Request<PerfMetricsSummary>;
1203
1582
  create(request: {
1204
1583
  /** V1 error format. */
1205
- "$.xgafv"?: string;
1584
+ "$.xgafv"?:
1585
+ string;
1206
1586
  /** OAuth access token. */
1207
- access_token?: string;
1587
+ access_token?:
1588
+ string;
1208
1589
  /** Data format for response. */
1209
- alt?: string;
1590
+ alt?:
1591
+ string;
1210
1592
  /** JSONP */
1211
- callback?: string;
1593
+ callback?:
1594
+ string;
1212
1595
  /** A tool results execution ID. */
1213
- executionId: string;
1596
+ executionId:
1597
+ string;
1214
1598
  /** Selector specifying which fields to include in a partial response. */
1215
- fields?: string;
1599
+ fields?:
1600
+ string;
1216
1601
  /** A tool results history ID. */
1217
- historyId: string;
1602
+ historyId:
1603
+ string;
1218
1604
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1219
- key?: string;
1605
+ key?:
1606
+ string;
1220
1607
  /** OAuth 2.0 token for the current user. */
1221
- oauth_token?: string;
1608
+ oauth_token?:
1609
+ string;
1222
1610
  /** Returns response with indentations and line breaks. */
1223
- prettyPrint?: boolean;
1611
+ prettyPrint?:
1612
+ boolean;
1224
1613
  /** The cloud project */
1225
- projectId: string;
1614
+ projectId:
1615
+ string;
1226
1616
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1227
- quotaUser?: string;
1617
+ quotaUser?:
1618
+ string;
1228
1619
  /** A tool results step ID. */
1229
- stepId: string;
1620
+ stepId:
1621
+ string;
1230
1622
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1231
- upload_protocol?: string;
1623
+ upload_protocol?:
1624
+ string;
1232
1625
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1233
- uploadType?: string;
1626
+ uploadType?:
1627
+ string;
1234
1628
  },
1235
1629
  body: PerfMetricsSummary): Request<PerfMetricsSummary>;
1236
1630
  }
@@ -1242,73 +1636,106 @@ declare namespace gapi.client {
1242
1636
  */
1243
1637
  batchCreate(request: {
1244
1638
  /** V1 error format. */
1245
- "$.xgafv"?: string;
1639
+ "$.xgafv"?:
1640
+ string;
1246
1641
  /** OAuth access token. */
1247
- access_token?: string;
1642
+ access_token?:
1643
+ string;
1248
1644
  /** Data format for response. */
1249
- alt?: string;
1645
+ alt?:
1646
+ string;
1250
1647
  /** JSONP */
1251
- callback?: string;
1648
+ callback?:
1649
+ string;
1252
1650
  /** A tool results execution ID. */
1253
- executionId: string;
1651
+ executionId:
1652
+ string;
1254
1653
  /** Selector specifying which fields to include in a partial response. */
1255
- fields?: string;
1654
+ fields?:
1655
+ string;
1256
1656
  /** A tool results history ID. */
1257
- historyId: string;
1657
+ historyId:
1658
+ string;
1258
1659
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1259
- key?: string;
1660
+ key?:
1661
+ string;
1260
1662
  /** OAuth 2.0 token for the current user. */
1261
- oauth_token?: string;
1663
+ oauth_token?:
1664
+ string;
1262
1665
  /** Returns response with indentations and line breaks. */
1263
- prettyPrint?: boolean;
1666
+ prettyPrint?:
1667
+ boolean;
1264
1668
  /** The cloud project */
1265
- projectId: string;
1669
+ projectId:
1670
+ string;
1266
1671
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1267
- quotaUser?: string;
1672
+ quotaUser?:
1673
+ string;
1268
1674
  /** A sample series id */
1269
- sampleSeriesId: string;
1675
+ sampleSeriesId:
1676
+ string;
1270
1677
  /** A tool results step ID. */
1271
- stepId: string;
1678
+ stepId:
1679
+ string;
1272
1680
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1273
- upload_protocol?: string;
1681
+ upload_protocol?:
1682
+ string;
1274
1683
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1275
- uploadType?: string;
1684
+ uploadType?:
1685
+ string;
1276
1686
  /** Request body */
1277
- resource: BatchCreatePerfSamplesRequest;
1687
+ resource:
1688
+ BatchCreatePerfSamplesRequest;
1278
1689
  }): Request<BatchCreatePerfSamplesResponse>;
1279
1690
  batchCreate(request: {
1280
1691
  /** V1 error format. */
1281
- "$.xgafv"?: string;
1692
+ "$.xgafv"?:
1693
+ string;
1282
1694
  /** OAuth access token. */
1283
- access_token?: string;
1695
+ access_token?:
1696
+ string;
1284
1697
  /** Data format for response. */
1285
- alt?: string;
1698
+ alt?:
1699
+ string;
1286
1700
  /** JSONP */
1287
- callback?: string;
1701
+ callback?:
1702
+ string;
1288
1703
  /** A tool results execution ID. */
1289
- executionId: string;
1704
+ executionId:
1705
+ string;
1290
1706
  /** Selector specifying which fields to include in a partial response. */
1291
- fields?: string;
1707
+ fields?:
1708
+ string;
1292
1709
  /** A tool results history ID. */
1293
- historyId: string;
1710
+ historyId:
1711
+ string;
1294
1712
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1295
- key?: string;
1713
+ key?:
1714
+ string;
1296
1715
  /** OAuth 2.0 token for the current user. */
1297
- oauth_token?: string;
1716
+ oauth_token?:
1717
+ string;
1298
1718
  /** Returns response with indentations and line breaks. */
1299
- prettyPrint?: boolean;
1719
+ prettyPrint?:
1720
+ boolean;
1300
1721
  /** The cloud project */
1301
- projectId: string;
1722
+ projectId:
1723
+ string;
1302
1724
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1303
- quotaUser?: string;
1725
+ quotaUser?:
1726
+ string;
1304
1727
  /** A sample series id */
1305
- sampleSeriesId: string;
1728
+ sampleSeriesId:
1729
+ string;
1306
1730
  /** A tool results step ID. */
1307
- stepId: string;
1731
+ stepId:
1732
+ string;
1308
1733
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1309
- upload_protocol?: string;
1734
+ upload_protocol?:
1735
+ string;
1310
1736
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1311
- uploadType?: string;
1737
+ uploadType?:
1738
+ string;
1312
1739
  },
1313
1740
  body: BatchCreatePerfSamplesRequest): Request<BatchCreatePerfSamplesResponse>;
1314
1741
  /**
@@ -1319,41 +1746,59 @@ declare namespace gapi.client {
1319
1746
  */
1320
1747
  list(request?: {
1321
1748
  /** V1 error format. */
1322
- "$.xgafv"?: string;
1749
+ "$.xgafv"?:
1750
+ string;
1323
1751
  /** OAuth access token. */
1324
- access_token?: string;
1752
+ access_token?:
1753
+ string;
1325
1754
  /** Data format for response. */
1326
- alt?: string;
1755
+ alt?:
1756
+ string;
1327
1757
  /** JSONP */
1328
- callback?: string;
1758
+ callback?:
1759
+ string;
1329
1760
  /** A tool results execution ID. */
1330
- executionId: string;
1761
+ executionId:
1762
+ string;
1331
1763
  /** Selector specifying which fields to include in a partial response. */
1332
- fields?: string;
1764
+ fields?:
1765
+ string;
1333
1766
  /** A tool results history ID. */
1334
- historyId: string;
1767
+ historyId:
1768
+ string;
1335
1769
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1336
- key?: string;
1770
+ key?:
1771
+ string;
1337
1772
  /** OAuth 2.0 token for the current user. */
1338
- oauth_token?: string;
1773
+ oauth_token?:
1774
+ string;
1339
1775
  /** The default page size is 500 samples, and the maximum size is 5000. If the page_size is greater than 5000, the effective page size will be 5000 */
1340
- pageSize?: number;
1776
+ pageSize?:
1777
+ number;
1341
1778
  /** Optional, the next_page_token returned in the previous response */
1342
- pageToken?: string;
1779
+ pageToken?:
1780
+ string;
1343
1781
  /** Returns response with indentations and line breaks. */
1344
- prettyPrint?: boolean;
1782
+ prettyPrint?:
1783
+ boolean;
1345
1784
  /** The cloud project */
1346
- projectId: string;
1785
+ projectId:
1786
+ string;
1347
1787
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1348
- quotaUser?: string;
1788
+ quotaUser?:
1789
+ string;
1349
1790
  /** A sample series id */
1350
- sampleSeriesId: string;
1791
+ sampleSeriesId:
1792
+ string;
1351
1793
  /** A tool results step ID. */
1352
- stepId: string;
1794
+ stepId:
1795
+ string;
1353
1796
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1354
- upload_protocol?: string;
1797
+ upload_protocol?:
1798
+ string;
1355
1799
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1356
- uploadType?: string;
1800
+ uploadType?:
1801
+ string;
1357
1802
  }): Request<ListPerfSamplesResponse>;
1358
1803
  }
1359
1804
  interface PerfSampleSeriesResource {
@@ -1363,105 +1808,152 @@ declare namespace gapi.client {
1363
1808
  */
1364
1809
  create(request: {
1365
1810
  /** V1 error format. */
1366
- "$.xgafv"?: string;
1811
+ "$.xgafv"?:
1812
+ string;
1367
1813
  /** OAuth access token. */
1368
- access_token?: string;
1814
+ access_token?:
1815
+ string;
1369
1816
  /** Data format for response. */
1370
- alt?: string;
1817
+ alt?:
1818
+ string;
1371
1819
  /** JSONP */
1372
- callback?: string;
1820
+ callback?:
1821
+ string;
1373
1822
  /** A tool results execution ID. */
1374
- executionId: string;
1823
+ executionId:
1824
+ string;
1375
1825
  /** Selector specifying which fields to include in a partial response. */
1376
- fields?: string;
1826
+ fields?:
1827
+ string;
1377
1828
  /** A tool results history ID. */
1378
- historyId: string;
1829
+ historyId:
1830
+ string;
1379
1831
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1380
- key?: string;
1832
+ key?:
1833
+ string;
1381
1834
  /** OAuth 2.0 token for the current user. */
1382
- oauth_token?: string;
1835
+ oauth_token?:
1836
+ string;
1383
1837
  /** Returns response with indentations and line breaks. */
1384
- prettyPrint?: boolean;
1838
+ prettyPrint?:
1839
+ boolean;
1385
1840
  /** The cloud project */
1386
- projectId: string;
1841
+ projectId:
1842
+ string;
1387
1843
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1388
- quotaUser?: string;
1844
+ quotaUser?:
1845
+ string;
1389
1846
  /** A tool results step ID. */
1390
- stepId: string;
1847
+ stepId:
1848
+ string;
1391
1849
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1392
- upload_protocol?: string;
1850
+ upload_protocol?:
1851
+ string;
1393
1852
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1394
- uploadType?: string;
1853
+ uploadType?:
1854
+ string;
1395
1855
  /** Request body */
1396
- resource: PerfSampleSeries;
1856
+ resource:
1857
+ PerfSampleSeries;
1397
1858
  }): Request<PerfSampleSeries>;
1398
1859
  create(request: {
1399
1860
  /** V1 error format. */
1400
- "$.xgafv"?: string;
1861
+ "$.xgafv"?:
1862
+ string;
1401
1863
  /** OAuth access token. */
1402
- access_token?: string;
1864
+ access_token?:
1865
+ string;
1403
1866
  /** Data format for response. */
1404
- alt?: string;
1867
+ alt?:
1868
+ string;
1405
1869
  /** JSONP */
1406
- callback?: string;
1870
+ callback?:
1871
+ string;
1407
1872
  /** A tool results execution ID. */
1408
- executionId: string;
1873
+ executionId:
1874
+ string;
1409
1875
  /** Selector specifying which fields to include in a partial response. */
1410
- fields?: string;
1876
+ fields?:
1877
+ string;
1411
1878
  /** A tool results history ID. */
1412
- historyId: string;
1879
+ historyId:
1880
+ string;
1413
1881
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1414
- key?: string;
1882
+ key?:
1883
+ string;
1415
1884
  /** OAuth 2.0 token for the current user. */
1416
- oauth_token?: string;
1885
+ oauth_token?:
1886
+ string;
1417
1887
  /** Returns response with indentations and line breaks. */
1418
- prettyPrint?: boolean;
1888
+ prettyPrint?:
1889
+ boolean;
1419
1890
  /** The cloud project */
1420
- projectId: string;
1891
+ projectId:
1892
+ string;
1421
1893
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1422
- quotaUser?: string;
1894
+ quotaUser?:
1895
+ string;
1423
1896
  /** A tool results step ID. */
1424
- stepId: string;
1897
+ stepId:
1898
+ string;
1425
1899
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1426
- upload_protocol?: string;
1900
+ upload_protocol?:
1901
+ string;
1427
1902
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1428
- uploadType?: string;
1903
+ uploadType?:
1904
+ string;
1429
1905
  },
1430
1906
  body: PerfSampleSeries): Request<PerfSampleSeries>;
1431
1907
  /** Gets a PerfSampleSeries. May return any of the following error code(s): - NOT_FOUND - The specified PerfSampleSeries does not exist */
1432
1908
  get(request?: {
1433
1909
  /** V1 error format. */
1434
- "$.xgafv"?: string;
1910
+ "$.xgafv"?:
1911
+ string;
1435
1912
  /** OAuth access token. */
1436
- access_token?: string;
1913
+ access_token?:
1914
+ string;
1437
1915
  /** Data format for response. */
1438
- alt?: string;
1916
+ alt?:
1917
+ string;
1439
1918
  /** JSONP */
1440
- callback?: string;
1919
+ callback?:
1920
+ string;
1441
1921
  /** A tool results execution ID. */
1442
- executionId: string;
1922
+ executionId:
1923
+ string;
1443
1924
  /** Selector specifying which fields to include in a partial response. */
1444
- fields?: string;
1925
+ fields?:
1926
+ string;
1445
1927
  /** A tool results history ID. */
1446
- historyId: string;
1928
+ historyId:
1929
+ string;
1447
1930
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1448
- key?: string;
1931
+ key?:
1932
+ string;
1449
1933
  /** OAuth 2.0 token for the current user. */
1450
- oauth_token?: string;
1934
+ oauth_token?:
1935
+ string;
1451
1936
  /** Returns response with indentations and line breaks. */
1452
- prettyPrint?: boolean;
1937
+ prettyPrint?:
1938
+ boolean;
1453
1939
  /** The cloud project */
1454
- projectId: string;
1940
+ projectId:
1941
+ string;
1455
1942
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1456
- quotaUser?: string;
1943
+ quotaUser?:
1944
+ string;
1457
1945
  /** A sample series id */
1458
- sampleSeriesId: string;
1946
+ sampleSeriesId:
1947
+ string;
1459
1948
  /** A tool results step ID. */
1460
- stepId: string;
1949
+ stepId:
1950
+ string;
1461
1951
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1462
- upload_protocol?: string;
1952
+ upload_protocol?:
1953
+ string;
1463
1954
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1464
- uploadType?: string;
1955
+ uploadType?:
1956
+ string;
1465
1957
  }): Request<PerfSampleSeries>;
1466
1958
  /**
1467
1959
  * Lists PerfSampleSeries for a given Step. The request provides an optional filter which specifies one or more PerfMetricsType to include in the result; if none returns all. The
@@ -1469,39 +1961,56 @@ declare namespace gapi.client {
1469
1961
  */
1470
1962
  list(request?: {
1471
1963
  /** V1 error format. */
1472
- "$.xgafv"?: string;
1964
+ "$.xgafv"?:
1965
+ string;
1473
1966
  /** OAuth access token. */
1474
- access_token?: string;
1967
+ access_token?:
1968
+ string;
1475
1969
  /** Data format for response. */
1476
- alt?: string;
1970
+ alt?:
1971
+ string;
1477
1972
  /** JSONP */
1478
- callback?: string;
1973
+ callback?:
1974
+ string;
1479
1975
  /** A tool results execution ID. */
1480
- executionId: string;
1976
+ executionId:
1977
+ string;
1481
1978
  /** Selector specifying which fields to include in a partial response. */
1482
- fields?: string;
1979
+ fields?:
1980
+ string;
1483
1981
  /** Specify one or more PerfMetricType values such as CPU to filter the result */
1484
- filter?: string | string[];
1982
+ filter?:
1983
+ string | string[];
1485
1984
  /** A tool results history ID. */
1486
- historyId: string;
1985
+ historyId:
1986
+ string;
1487
1987
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1488
- key?: string;
1988
+ key?:
1989
+ string;
1489
1990
  /** OAuth 2.0 token for the current user. */
1490
- oauth_token?: string;
1991
+ oauth_token?:
1992
+ string;
1491
1993
  /** Returns response with indentations and line breaks. */
1492
- prettyPrint?: boolean;
1994
+ prettyPrint?:
1995
+ boolean;
1493
1996
  /** The cloud project */
1494
- projectId: string;
1997
+ projectId:
1998
+ string;
1495
1999
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1496
- quotaUser?: string;
2000
+ quotaUser?:
2001
+ string;
1497
2002
  /** A tool results step ID. */
1498
- stepId: string;
2003
+ stepId:
2004
+ string;
1499
2005
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1500
- upload_protocol?: string;
2006
+ upload_protocol?:
2007
+ string;
1501
2008
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1502
- uploadType?: string;
2009
+ uploadType?:
2010
+ string;
1503
2011
  }): Request<ListPerfSampleSeriesResponse>;
1504
- samples: SamplesResource;
2012
+ samples:
2013
+ SamplesResource;
1505
2014
  }
1506
2015
  interface TestCasesResource {
1507
2016
  /**
@@ -1510,37 +2019,53 @@ declare namespace gapi.client {
1510
2019
  */
1511
2020
  get(request?: {
1512
2021
  /** V1 error format. */
1513
- "$.xgafv"?: string;
2022
+ "$.xgafv"?:
2023
+ string;
1514
2024
  /** OAuth access token. */
1515
- access_token?: string;
2025
+ access_token?:
2026
+ string;
1516
2027
  /** Data format for response. */
1517
- alt?: string;
2028
+ alt?:
2029
+ string;
1518
2030
  /** JSONP */
1519
- callback?: string;
2031
+ callback?:
2032
+ string;
1520
2033
  /** A Execution id Required. */
1521
- executionId: string;
2034
+ executionId:
2035
+ string;
1522
2036
  /** Selector specifying which fields to include in a partial response. */
1523
- fields?: string;
2037
+ fields?:
2038
+ string;
1524
2039
  /** A History id. Required. */
1525
- historyId: string;
2040
+ historyId:
2041
+ string;
1526
2042
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1527
- key?: string;
2043
+ key?:
2044
+ string;
1528
2045
  /** OAuth 2.0 token for the current user. */
1529
- oauth_token?: string;
2046
+ oauth_token?:
2047
+ string;
1530
2048
  /** Returns response with indentations and line breaks. */
1531
- prettyPrint?: boolean;
2049
+ prettyPrint?:
2050
+ boolean;
1532
2051
  /** A Project id. Required. */
1533
- projectId: string;
2052
+ projectId:
2053
+ string;
1534
2054
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1535
- quotaUser?: string;
2055
+ quotaUser?:
2056
+ string;
1536
2057
  /** A Step id. Note: This step must include a TestExecutionStep. Required. */
1537
- stepId: string;
2058
+ stepId:
2059
+ string;
1538
2060
  /** A Test Case id. Required. */
1539
- testCaseId: string;
2061
+ testCaseId:
2062
+ string;
1540
2063
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1541
- upload_protocol?: string;
2064
+ upload_protocol?:
2065
+ string;
1542
2066
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1543
- uploadType?: string;
2067
+ uploadType?:
2068
+ string;
1544
2069
  }): Request<TestCase>;
1545
2070
  /**
1546
2071
  * Lists Test Cases attached to a Step. Experimental test cases API. Still in active development. May return any of the following canonical error codes: - PERMISSION_DENIED - if the
@@ -1548,39 +2073,56 @@ declare namespace gapi.client {
1548
2073
  */
1549
2074
  list(request?: {
1550
2075
  /** V1 error format. */
1551
- "$.xgafv"?: string;
2076
+ "$.xgafv"?:
2077
+ string;
1552
2078
  /** OAuth access token. */
1553
- access_token?: string;
2079
+ access_token?:
2080
+ string;
1554
2081
  /** Data format for response. */
1555
- alt?: string;
2082
+ alt?:
2083
+ string;
1556
2084
  /** JSONP */
1557
- callback?: string;
2085
+ callback?:
2086
+ string;
1558
2087
  /** A Execution id Required. */
1559
- executionId: string;
2088
+ executionId:
2089
+ string;
1560
2090
  /** Selector specifying which fields to include in a partial response. */
1561
- fields?: string;
2091
+ fields?:
2092
+ string;
1562
2093
  /** A History id. Required. */
1563
- historyId: string;
2094
+ historyId:
2095
+ string;
1564
2096
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1565
- key?: string;
2097
+ key?:
2098
+ string;
1566
2099
  /** OAuth 2.0 token for the current user. */
1567
- oauth_token?: string;
2100
+ oauth_token?:
2101
+ string;
1568
2102
  /** The maximum number of TestCases to fetch. Default value: 100. The server will use this default if the field is not set or has a value of 0. Optional. */
1569
- pageSize?: number;
2103
+ pageSize?:
2104
+ number;
1570
2105
  /** A continuation token to resume the query at the next item. Optional. */
1571
- pageToken?: string;
2106
+ pageToken?:
2107
+ string;
1572
2108
  /** Returns response with indentations and line breaks. */
1573
- prettyPrint?: boolean;
2109
+ prettyPrint?:
2110
+ boolean;
1574
2111
  /** A Project id. Required. */
1575
- projectId: string;
2112
+ projectId:
2113
+ string;
1576
2114
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1577
- quotaUser?: string;
2115
+ quotaUser?:
2116
+ string;
1578
2117
  /** A Step id. Note: This step must include a TestExecutionStep. Required. */
1579
- stepId: string;
2118
+ stepId:
2119
+ string;
1580
2120
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1581
- upload_protocol?: string;
2121
+ upload_protocol?:
2122
+ string;
1582
2123
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1583
- uploadType?: string;
2124
+ uploadType?:
2125
+ string;
1584
2126
  }): Request<ListTestCasesResponse>;
1585
2127
  }
1586
2128
  interface ThumbnailsResource {
@@ -1590,39 +2132,56 @@ declare namespace gapi.client {
1590
2132
  */
1591
2133
  list(request?: {
1592
2134
  /** V1 error format. */
1593
- "$.xgafv"?: string;
2135
+ "$.xgafv"?:
2136
+ string;
1594
2137
  /** OAuth access token. */
1595
- access_token?: string;
2138
+ access_token?:
2139
+ string;
1596
2140
  /** Data format for response. */
1597
- alt?: string;
2141
+ alt?:
2142
+ string;
1598
2143
  /** JSONP */
1599
- callback?: string;
2144
+ callback?:
2145
+ string;
1600
2146
  /** An Execution id. Required. */
1601
- executionId: string;
2147
+ executionId:
2148
+ string;
1602
2149
  /** Selector specifying which fields to include in a partial response. */
1603
- fields?: string;
2150
+ fields?:
2151
+ string;
1604
2152
  /** A History id. Required. */
1605
- historyId: string;
2153
+ historyId:
2154
+ string;
1606
2155
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1607
- key?: string;
2156
+ key?:
2157
+ string;
1608
2158
  /** OAuth 2.0 token for the current user. */
1609
- oauth_token?: string;
2159
+ oauth_token?:
2160
+ string;
1610
2161
  /** The maximum number of thumbnails to fetch. Default value: 50. The server will use this default if the field is not set or has a value of 0. Optional. */
1611
- pageSize?: number;
2162
+ pageSize?:
2163
+ number;
1612
2164
  /** A continuation token to resume the query at the next item. Optional. */
1613
- pageToken?: string;
2165
+ pageToken?:
2166
+ string;
1614
2167
  /** Returns response with indentations and line breaks. */
1615
- prettyPrint?: boolean;
2168
+ prettyPrint?:
2169
+ boolean;
1616
2170
  /** A Project id. Required. */
1617
- projectId: string;
2171
+ projectId:
2172
+ string;
1618
2173
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1619
- quotaUser?: string;
2174
+ quotaUser?:
2175
+ string;
1620
2176
  /** A Step id. Required. */
1621
- stepId: string;
2177
+ stepId:
2178
+ string;
1622
2179
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1623
- upload_protocol?: string;
2180
+ upload_protocol?:
2181
+ string;
1624
2182
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1625
- uploadType?: string;
2183
+ uploadType?:
2184
+ string;
1626
2185
  }): Request<ListStepThumbnailsResponse>;
1627
2186
  }
1628
2187
  interface StepsResource {
@@ -1633,34 +2192,47 @@ declare namespace gapi.client {
1633
2192
  */
1634
2193
  accessibilityClusters(request?: {
1635
2194
  /** V1 error format. */
1636
- "$.xgafv"?: string;
2195
+ "$.xgafv"?:
2196
+ string;
1637
2197
  /** OAuth access token. */
1638
- access_token?: string;
2198
+ access_token?:
2199
+ string;
1639
2200
  /** Data format for response. */
1640
- alt?: string;
2201
+ alt?:
2202
+ string;
1641
2203
  /** JSONP */
1642
- callback?: string;
2204
+ callback?:
2205
+ string;
1643
2206
  /** Selector specifying which fields to include in a partial response. */
1644
- fields?: string;
2207
+ fields?:
2208
+ string;
1645
2209
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1646
- key?: string;
2210
+ key?:
2211
+ string;
1647
2212
  /**
1648
2213
  * The accepted format is the canonical Unicode format with hyphen as a delimiter. Language must be lowercase, Language Script - Capitalized, Region - UPPERCASE. See
1649
2214
  * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier for details. Required.
1650
2215
  */
1651
- locale?: string;
2216
+ locale?:
2217
+ string;
1652
2218
  /** A full resource name of the step. For example, projects/my-project/histories/bh.1234567890abcdef/executions/ 1234567890123456789/steps/bs.1234567890abcdef Required. */
1653
- name: string;
2219
+ name:
2220
+ string;
1654
2221
  /** OAuth 2.0 token for the current user. */
1655
- oauth_token?: string;
2222
+ oauth_token?:
2223
+ string;
1656
2224
  /** Returns response with indentations and line breaks. */
1657
- prettyPrint?: boolean;
2225
+ prettyPrint?:
2226
+ boolean;
1658
2227
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1659
- quotaUser?: string;
2228
+ quotaUser?:
2229
+ string;
1660
2230
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1661
- upload_protocol?: string;
2231
+ upload_protocol?:
2232
+ string;
1662
2233
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1663
- uploadType?: string;
2234
+ uploadType?:
2235
+ string;
1664
2236
  }): Request<ListStepAccessibilityClustersResponse>;
1665
2237
  /**
1666
2238
  * Creates a Step. The returned Step will have the id set. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to
@@ -1668,69 +2240,100 @@ declare namespace gapi.client {
1668
2240
  */
1669
2241
  create(request: {
1670
2242
  /** V1 error format. */
1671
- "$.xgafv"?: string;
2243
+ "$.xgafv"?:
2244
+ string;
1672
2245
  /** OAuth access token. */
1673
- access_token?: string;
2246
+ access_token?:
2247
+ string;
1674
2248
  /** Data format for response. */
1675
- alt?: string;
2249
+ alt?:
2250
+ string;
1676
2251
  /** JSONP */
1677
- callback?: string;
2252
+ callback?:
2253
+ string;
1678
2254
  /** Required. An Execution id. */
1679
- executionId: string;
2255
+ executionId:
2256
+ string;
1680
2257
  /** Selector specifying which fields to include in a partial response. */
1681
- fields?: string;
2258
+ fields?:
2259
+ string;
1682
2260
  /** Required. A History id. */
1683
- historyId: string;
2261
+ historyId:
2262
+ string;
1684
2263
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1685
- key?: string;
2264
+ key?:
2265
+ string;
1686
2266
  /** OAuth 2.0 token for the current user. */
1687
- oauth_token?: string;
2267
+ oauth_token?:
2268
+ string;
1688
2269
  /** Returns response with indentations and line breaks. */
1689
- prettyPrint?: boolean;
2270
+ prettyPrint?:
2271
+ boolean;
1690
2272
  /** Required. A Project id. */
1691
- projectId: string;
2273
+ projectId:
2274
+ string;
1692
2275
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1693
- quotaUser?: string;
2276
+ quotaUser?:
2277
+ string;
1694
2278
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
1695
- requestId?: string;
2279
+ requestId?:
2280
+ string;
1696
2281
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1697
- upload_protocol?: string;
2282
+ upload_protocol?:
2283
+ string;
1698
2284
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1699
- uploadType?: string;
2285
+ uploadType?:
2286
+ string;
1700
2287
  /** Request body */
1701
- resource: Step;
2288
+ resource:
2289
+ Step;
1702
2290
  }): Request<Step>;
1703
2291
  create(request: {
1704
2292
  /** V1 error format. */
1705
- "$.xgafv"?: string;
2293
+ "$.xgafv"?:
2294
+ string;
1706
2295
  /** OAuth access token. */
1707
- access_token?: string;
2296
+ access_token?:
2297
+ string;
1708
2298
  /** Data format for response. */
1709
- alt?: string;
2299
+ alt?:
2300
+ string;
1710
2301
  /** JSONP */
1711
- callback?: string;
2302
+ callback?:
2303
+ string;
1712
2304
  /** Required. An Execution id. */
1713
- executionId: string;
2305
+ executionId:
2306
+ string;
1714
2307
  /** Selector specifying which fields to include in a partial response. */
1715
- fields?: string;
2308
+ fields?:
2309
+ string;
1716
2310
  /** Required. A History id. */
1717
- historyId: string;
2311
+ historyId:
2312
+ string;
1718
2313
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1719
- key?: string;
2314
+ key?:
2315
+ string;
1720
2316
  /** OAuth 2.0 token for the current user. */
1721
- oauth_token?: string;
2317
+ oauth_token?:
2318
+ string;
1722
2319
  /** Returns response with indentations and line breaks. */
1723
- prettyPrint?: boolean;
2320
+ prettyPrint?:
2321
+ boolean;
1724
2322
  /** Required. A Project id. */
1725
- projectId: string;
2323
+ projectId:
2324
+ string;
1726
2325
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1727
- quotaUser?: string;
2326
+ quotaUser?:
2327
+ string;
1728
2328
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
1729
- requestId?: string;
2329
+ requestId?:
2330
+ string;
1730
2331
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1731
- upload_protocol?: string;
2332
+ upload_protocol?:
2333
+ string;
1732
2334
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1733
- uploadType?: string;
2335
+ uploadType?:
2336
+ string;
1734
2337
  },
1735
2338
  body: Step): Request<Step>;
1736
2339
  /**
@@ -1739,68 +2342,98 @@ declare namespace gapi.client {
1739
2342
  */
1740
2343
  get(request?: {
1741
2344
  /** V1 error format. */
1742
- "$.xgafv"?: string;
2345
+ "$.xgafv"?:
2346
+ string;
1743
2347
  /** OAuth access token. */
1744
- access_token?: string;
2348
+ access_token?:
2349
+ string;
1745
2350
  /** Data format for response. */
1746
- alt?: string;
2351
+ alt?:
2352
+ string;
1747
2353
  /** JSONP */
1748
- callback?: string;
2354
+ callback?:
2355
+ string;
1749
2356
  /** A Execution id. Required. */
1750
- executionId: string;
2357
+ executionId:
2358
+ string;
1751
2359
  /** Selector specifying which fields to include in a partial response. */
1752
- fields?: string;
2360
+ fields?:
2361
+ string;
1753
2362
  /** A History id. Required. */
1754
- historyId: string;
2363
+ historyId:
2364
+ string;
1755
2365
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1756
- key?: string;
2366
+ key?:
2367
+ string;
1757
2368
  /** OAuth 2.0 token for the current user. */
1758
- oauth_token?: string;
2369
+ oauth_token?:
2370
+ string;
1759
2371
  /** Returns response with indentations and line breaks. */
1760
- prettyPrint?: boolean;
2372
+ prettyPrint?:
2373
+ boolean;
1761
2374
  /** A Project id. Required. */
1762
- projectId: string;
2375
+ projectId:
2376
+ string;
1763
2377
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1764
- quotaUser?: string;
2378
+ quotaUser?:
2379
+ string;
1765
2380
  /** A Step id. Required. */
1766
- stepId: string;
2381
+ stepId:
2382
+ string;
1767
2383
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1768
- upload_protocol?: string;
2384
+ upload_protocol?:
2385
+ string;
1769
2386
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1770
- uploadType?: string;
2387
+ uploadType?:
2388
+ string;
1771
2389
  }): Request<Step>;
1772
2390
  /** Retrieves a PerfMetricsSummary. May return any of the following error code(s): - NOT_FOUND - The specified PerfMetricsSummary does not exist */
1773
2391
  getPerfMetricsSummary(request?: {
1774
2392
  /** V1 error format. */
1775
- "$.xgafv"?: string;
2393
+ "$.xgafv"?:
2394
+ string;
1776
2395
  /** OAuth access token. */
1777
- access_token?: string;
2396
+ access_token?:
2397
+ string;
1778
2398
  /** Data format for response. */
1779
- alt?: string;
2399
+ alt?:
2400
+ string;
1780
2401
  /** JSONP */
1781
- callback?: string;
2402
+ callback?:
2403
+ string;
1782
2404
  /** A tool results execution ID. */
1783
- executionId: string;
2405
+ executionId:
2406
+ string;
1784
2407
  /** Selector specifying which fields to include in a partial response. */
1785
- fields?: string;
2408
+ fields?:
2409
+ string;
1786
2410
  /** A tool results history ID. */
1787
- historyId: string;
2411
+ historyId:
2412
+ string;
1788
2413
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1789
- key?: string;
2414
+ key?:
2415
+ string;
1790
2416
  /** OAuth 2.0 token for the current user. */
1791
- oauth_token?: string;
2417
+ oauth_token?:
2418
+ string;
1792
2419
  /** Returns response with indentations and line breaks. */
1793
- prettyPrint?: boolean;
2420
+ prettyPrint?:
2421
+ boolean;
1794
2422
  /** The cloud project */
1795
- projectId: string;
2423
+ projectId:
2424
+ string;
1796
2425
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1797
- quotaUser?: string;
2426
+ quotaUser?:
2427
+ string;
1798
2428
  /** A tool results step ID. */
1799
- stepId: string;
2429
+ stepId:
2430
+ string;
1800
2431
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1801
- upload_protocol?: string;
2432
+ upload_protocol?:
2433
+ string;
1802
2434
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1803
- uploadType?: string;
2435
+ uploadType?:
2436
+ string;
1804
2437
  }): Request<PerfMetricsSummary>;
1805
2438
  /**
1806
2439
  * Lists Steps for a given Execution. The steps are sorted by creation_time in descending order. The step_id key will be used to order the steps with the same creation_time. May return
@@ -1810,37 +2443,53 @@ declare namespace gapi.client {
1810
2443
  */
1811
2444
  list(request?: {
1812
2445
  /** V1 error format. */
1813
- "$.xgafv"?: string;
2446
+ "$.xgafv"?:
2447
+ string;
1814
2448
  /** OAuth access token. */
1815
- access_token?: string;
2449
+ access_token?:
2450
+ string;
1816
2451
  /** Data format for response. */
1817
- alt?: string;
2452
+ alt?:
2453
+ string;
1818
2454
  /** JSONP */
1819
- callback?: string;
2455
+ callback?:
2456
+ string;
1820
2457
  /** A Execution id. Required. */
1821
- executionId: string;
2458
+ executionId:
2459
+ string;
1822
2460
  /** Selector specifying which fields to include in a partial response. */
1823
- fields?: string;
2461
+ fields?:
2462
+ string;
1824
2463
  /** A History id. Required. */
1825
- historyId: string;
2464
+ historyId:
2465
+ string;
1826
2466
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1827
- key?: string;
2467
+ key?:
2468
+ string;
1828
2469
  /** OAuth 2.0 token for the current user. */
1829
- oauth_token?: string;
2470
+ oauth_token?:
2471
+ string;
1830
2472
  /** The maximum number of Steps to fetch. Default value: 25. The server will use this default if the field is not set or has a value of 0. Optional. */
1831
- pageSize?: number;
2473
+ pageSize?:
2474
+ number;
1832
2475
  /** A continuation token to resume the query at the next item. Optional. */
1833
- pageToken?: string;
2476
+ pageToken?:
2477
+ string;
1834
2478
  /** Returns response with indentations and line breaks. */
1835
- prettyPrint?: boolean;
2479
+ prettyPrint?:
2480
+ boolean;
1836
2481
  /** A Project id. Required. */
1837
- projectId: string;
2482
+ projectId:
2483
+ string;
1838
2484
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1839
- quotaUser?: string;
2485
+ quotaUser?:
2486
+ string;
1840
2487
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1841
- upload_protocol?: string;
2488
+ upload_protocol?:
2489
+ string;
1842
2490
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1843
- uploadType?: string;
2491
+ uploadType?:
2492
+ string;
1844
2493
  }): Request<ListStepsResponse>;
1845
2494
  /**
1846
2495
  * Updates an existing Step with the supplied partial entity. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write
@@ -1849,73 +2498,106 @@ declare namespace gapi.client {
1849
2498
  */
1850
2499
  patch(request: {
1851
2500
  /** V1 error format. */
1852
- "$.xgafv"?: string;
2501
+ "$.xgafv"?:
2502
+ string;
1853
2503
  /** OAuth access token. */
1854
- access_token?: string;
2504
+ access_token?:
2505
+ string;
1855
2506
  /** Data format for response. */
1856
- alt?: string;
2507
+ alt?:
2508
+ string;
1857
2509
  /** JSONP */
1858
- callback?: string;
2510
+ callback?:
2511
+ string;
1859
2512
  /** A Execution id. Required. */
1860
- executionId: string;
2513
+ executionId:
2514
+ string;
1861
2515
  /** Selector specifying which fields to include in a partial response. */
1862
- fields?: string;
2516
+ fields?:
2517
+ string;
1863
2518
  /** A History id. Required. */
1864
- historyId: string;
2519
+ historyId:
2520
+ string;
1865
2521
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1866
- key?: string;
2522
+ key?:
2523
+ string;
1867
2524
  /** OAuth 2.0 token for the current user. */
1868
- oauth_token?: string;
2525
+ oauth_token?:
2526
+ string;
1869
2527
  /** Returns response with indentations and line breaks. */
1870
- prettyPrint?: boolean;
2528
+ prettyPrint?:
2529
+ boolean;
1871
2530
  /** A Project id. Required. */
1872
- projectId: string;
2531
+ projectId:
2532
+ string;
1873
2533
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1874
- quotaUser?: string;
2534
+ quotaUser?:
2535
+ string;
1875
2536
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
1876
- requestId?: string;
2537
+ requestId?:
2538
+ string;
1877
2539
  /** A Step id. Required. */
1878
- stepId: string;
2540
+ stepId:
2541
+ string;
1879
2542
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1880
- upload_protocol?: string;
2543
+ upload_protocol?:
2544
+ string;
1881
2545
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1882
- uploadType?: string;
2546
+ uploadType?:
2547
+ string;
1883
2548
  /** Request body */
1884
- resource: Step;
2549
+ resource:
2550
+ Step;
1885
2551
  }): Request<Step>;
1886
2552
  patch(request: {
1887
2553
  /** V1 error format. */
1888
- "$.xgafv"?: string;
2554
+ "$.xgafv"?:
2555
+ string;
1889
2556
  /** OAuth access token. */
1890
- access_token?: string;
2557
+ access_token?:
2558
+ string;
1891
2559
  /** Data format for response. */
1892
- alt?: string;
2560
+ alt?:
2561
+ string;
1893
2562
  /** JSONP */
1894
- callback?: string;
2563
+ callback?:
2564
+ string;
1895
2565
  /** A Execution id. Required. */
1896
- executionId: string;
2566
+ executionId:
2567
+ string;
1897
2568
  /** Selector specifying which fields to include in a partial response. */
1898
- fields?: string;
2569
+ fields?:
2570
+ string;
1899
2571
  /** A History id. Required. */
1900
- historyId: string;
2572
+ historyId:
2573
+ string;
1901
2574
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1902
- key?: string;
2575
+ key?:
2576
+ string;
1903
2577
  /** OAuth 2.0 token for the current user. */
1904
- oauth_token?: string;
2578
+ oauth_token?:
2579
+ string;
1905
2580
  /** Returns response with indentations and line breaks. */
1906
- prettyPrint?: boolean;
2581
+ prettyPrint?:
2582
+ boolean;
1907
2583
  /** A Project id. Required. */
1908
- projectId: string;
2584
+ projectId:
2585
+ string;
1909
2586
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1910
- quotaUser?: string;
2587
+ quotaUser?:
2588
+ string;
1911
2589
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
1912
- requestId?: string;
2590
+ requestId?:
2591
+ string;
1913
2592
  /** A Step id. Required. */
1914
- stepId: string;
2593
+ stepId:
2594
+ string;
1915
2595
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1916
- upload_protocol?: string;
2596
+ upload_protocol?:
2597
+ string;
1917
2598
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1918
- uploadType?: string;
2599
+ uploadType?:
2600
+ string;
1919
2601
  },
1920
2602
  body: Step): Request<Step>;
1921
2603
  /**
@@ -1925,75 +2607,110 @@ declare namespace gapi.client {
1925
2607
  */
1926
2608
  publishXunitXmlFiles(request: {
1927
2609
  /** V1 error format. */
1928
- "$.xgafv"?: string;
2610
+ "$.xgafv"?:
2611
+ string;
1929
2612
  /** OAuth access token. */
1930
- access_token?: string;
2613
+ access_token?:
2614
+ string;
1931
2615
  /** Data format for response. */
1932
- alt?: string;
2616
+ alt?:
2617
+ string;
1933
2618
  /** JSONP */
1934
- callback?: string;
2619
+ callback?:
2620
+ string;
1935
2621
  /** A Execution id. Required. */
1936
- executionId: string;
2622
+ executionId:
2623
+ string;
1937
2624
  /** Selector specifying which fields to include in a partial response. */
1938
- fields?: string;
2625
+ fields?:
2626
+ string;
1939
2627
  /** A History id. Required. */
1940
- historyId: string;
2628
+ historyId:
2629
+ string;
1941
2630
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1942
- key?: string;
2631
+ key?:
2632
+ string;
1943
2633
  /** OAuth 2.0 token for the current user. */
1944
- oauth_token?: string;
2634
+ oauth_token?:
2635
+ string;
1945
2636
  /** Returns response with indentations and line breaks. */
1946
- prettyPrint?: boolean;
2637
+ prettyPrint?:
2638
+ boolean;
1947
2639
  /** A Project id. Required. */
1948
- projectId: string;
2640
+ projectId:
2641
+ string;
1949
2642
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1950
- quotaUser?: string;
2643
+ quotaUser?:
2644
+ string;
1951
2645
  /** A Step id. Note: This step must include a TestExecutionStep. Required. */
1952
- stepId: string;
2646
+ stepId:
2647
+ string;
1953
2648
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1954
- upload_protocol?: string;
2649
+ upload_protocol?:
2650
+ string;
1955
2651
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1956
- uploadType?: string;
2652
+ uploadType?:
2653
+ string;
1957
2654
  /** Request body */
1958
- resource: PublishXunitXmlFilesRequest;
2655
+ resource:
2656
+ PublishXunitXmlFilesRequest;
1959
2657
  }): Request<Step>;
1960
2658
  publishXunitXmlFiles(request: {
1961
2659
  /** V1 error format. */
1962
- "$.xgafv"?: string;
2660
+ "$.xgafv"?:
2661
+ string;
1963
2662
  /** OAuth access token. */
1964
- access_token?: string;
2663
+ access_token?:
2664
+ string;
1965
2665
  /** Data format for response. */
1966
- alt?: string;
2666
+ alt?:
2667
+ string;
1967
2668
  /** JSONP */
1968
- callback?: string;
2669
+ callback?:
2670
+ string;
1969
2671
  /** A Execution id. Required. */
1970
- executionId: string;
2672
+ executionId:
2673
+ string;
1971
2674
  /** Selector specifying which fields to include in a partial response. */
1972
- fields?: string;
2675
+ fields?:
2676
+ string;
1973
2677
  /** A History id. Required. */
1974
- historyId: string;
2678
+ historyId:
2679
+ string;
1975
2680
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1976
- key?: string;
2681
+ key?:
2682
+ string;
1977
2683
  /** OAuth 2.0 token for the current user. */
1978
- oauth_token?: string;
2684
+ oauth_token?:
2685
+ string;
1979
2686
  /** Returns response with indentations and line breaks. */
1980
- prettyPrint?: boolean;
2687
+ prettyPrint?:
2688
+ boolean;
1981
2689
  /** A Project id. Required. */
1982
- projectId: string;
2690
+ projectId:
2691
+ string;
1983
2692
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1984
- quotaUser?: string;
2693
+ quotaUser?:
2694
+ string;
1985
2695
  /** A Step id. Note: This step must include a TestExecutionStep. Required. */
1986
- stepId: string;
2696
+ stepId:
2697
+ string;
1987
2698
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1988
- upload_protocol?: string;
2699
+ upload_protocol?:
2700
+ string;
1989
2701
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1990
- uploadType?: string;
2702
+ uploadType?:
2703
+ string;
1991
2704
  },
1992
2705
  body: PublishXunitXmlFilesRequest): Request<Step>;
1993
- perfMetricsSummary: PerfMetricsSummaryResource;
1994
- perfSampleSeries: PerfSampleSeriesResource;
1995
- testCases: TestCasesResource;
1996
- thumbnails: ThumbnailsResource;
2706
+ perfMetricsSummary:
2707
+ PerfMetricsSummaryResource;
2708
+ perfSampleSeries:
2709
+ PerfSampleSeriesResource;
2710
+ testCases:
2711
+ TestCasesResource;
2712
+ thumbnails:
2713
+ ThumbnailsResource;
1997
2714
  }
1998
2715
  interface ExecutionsResource {
1999
2716
  /**
@@ -2002,65 +2719,94 @@ declare namespace gapi.client {
2002
2719
  */
2003
2720
  create(request: {
2004
2721
  /** V1 error format. */
2005
- "$.xgafv"?: string;
2722
+ "$.xgafv"?:
2723
+ string;
2006
2724
  /** OAuth access token. */
2007
- access_token?: string;
2725
+ access_token?:
2726
+ string;
2008
2727
  /** Data format for response. */
2009
- alt?: string;
2728
+ alt?:
2729
+ string;
2010
2730
  /** JSONP */
2011
- callback?: string;
2731
+ callback?:
2732
+ string;
2012
2733
  /** Selector specifying which fields to include in a partial response. */
2013
- fields?: string;
2734
+ fields?:
2735
+ string;
2014
2736
  /** A History id. Required. */
2015
- historyId: string;
2737
+ historyId:
2738
+ string;
2016
2739
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2017
- key?: string;
2740
+ key?:
2741
+ string;
2018
2742
  /** OAuth 2.0 token for the current user. */
2019
- oauth_token?: string;
2743
+ oauth_token?:
2744
+ string;
2020
2745
  /** Returns response with indentations and line breaks. */
2021
- prettyPrint?: boolean;
2746
+ prettyPrint?:
2747
+ boolean;
2022
2748
  /** A Project id. Required. */
2023
- projectId: string;
2749
+ projectId:
2750
+ string;
2024
2751
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2025
- quotaUser?: string;
2752
+ quotaUser?:
2753
+ string;
2026
2754
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
2027
- requestId?: string;
2755
+ requestId?:
2756
+ string;
2028
2757
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2029
- upload_protocol?: string;
2758
+ upload_protocol?:
2759
+ string;
2030
2760
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2031
- uploadType?: string;
2761
+ uploadType?:
2762
+ string;
2032
2763
  /** Request body */
2033
- resource: Execution;
2764
+ resource:
2765
+ Execution;
2034
2766
  }): Request<Execution>;
2035
2767
  create(request: {
2036
2768
  /** V1 error format. */
2037
- "$.xgafv"?: string;
2769
+ "$.xgafv"?:
2770
+ string;
2038
2771
  /** OAuth access token. */
2039
- access_token?: string;
2772
+ access_token?:
2773
+ string;
2040
2774
  /** Data format for response. */
2041
- alt?: string;
2775
+ alt?:
2776
+ string;
2042
2777
  /** JSONP */
2043
- callback?: string;
2778
+ callback?:
2779
+ string;
2044
2780
  /** Selector specifying which fields to include in a partial response. */
2045
- fields?: string;
2781
+ fields?:
2782
+ string;
2046
2783
  /** A History id. Required. */
2047
- historyId: string;
2784
+ historyId:
2785
+ string;
2048
2786
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2049
- key?: string;
2787
+ key?:
2788
+ string;
2050
2789
  /** OAuth 2.0 token for the current user. */
2051
- oauth_token?: string;
2790
+ oauth_token?:
2791
+ string;
2052
2792
  /** Returns response with indentations and line breaks. */
2053
- prettyPrint?: boolean;
2793
+ prettyPrint?:
2794
+ boolean;
2054
2795
  /** A Project id. Required. */
2055
- projectId: string;
2796
+ projectId:
2797
+ string;
2056
2798
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2057
- quotaUser?: string;
2799
+ quotaUser?:
2800
+ string;
2058
2801
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
2059
- requestId?: string;
2802
+ requestId?:
2803
+ string;
2060
2804
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2061
- upload_protocol?: string;
2805
+ upload_protocol?:
2806
+ string;
2062
2807
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2063
- uploadType?: string;
2808
+ uploadType?:
2809
+ string;
2064
2810
  },
2065
2811
  body: Execution): Request<Execution>;
2066
2812
  /**
@@ -2069,33 +2815,47 @@ declare namespace gapi.client {
2069
2815
  */
2070
2816
  get(request?: {
2071
2817
  /** V1 error format. */
2072
- "$.xgafv"?: string;
2818
+ "$.xgafv"?:
2819
+ string;
2073
2820
  /** OAuth access token. */
2074
- access_token?: string;
2821
+ access_token?:
2822
+ string;
2075
2823
  /** Data format for response. */
2076
- alt?: string;
2824
+ alt?:
2825
+ string;
2077
2826
  /** JSONP */
2078
- callback?: string;
2827
+ callback?:
2828
+ string;
2079
2829
  /** An Execution id. Required. */
2080
- executionId: string;
2830
+ executionId:
2831
+ string;
2081
2832
  /** Selector specifying which fields to include in a partial response. */
2082
- fields?: string;
2833
+ fields?:
2834
+ string;
2083
2835
  /** A History id. Required. */
2084
- historyId: string;
2836
+ historyId:
2837
+ string;
2085
2838
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2086
- key?: string;
2839
+ key?:
2840
+ string;
2087
2841
  /** OAuth 2.0 token for the current user. */
2088
- oauth_token?: string;
2842
+ oauth_token?:
2843
+ string;
2089
2844
  /** Returns response with indentations and line breaks. */
2090
- prettyPrint?: boolean;
2845
+ prettyPrint?:
2846
+ boolean;
2091
2847
  /** A Project id. Required. */
2092
- projectId: string;
2848
+ projectId:
2849
+ string;
2093
2850
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2094
- quotaUser?: string;
2851
+ quotaUser?:
2852
+ string;
2095
2853
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2096
- upload_protocol?: string;
2854
+ upload_protocol?:
2855
+ string;
2097
2856
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2098
- uploadType?: string;
2857
+ uploadType?:
2858
+ string;
2099
2859
  }): Request<Execution>;
2100
2860
  /**
2101
2861
  * Lists Executions for a given History. The executions are sorted by creation_time in descending order. The execution_id key will be used to order the executions with the same
@@ -2104,35 +2864,50 @@ declare namespace gapi.client {
2104
2864
  */
2105
2865
  list(request?: {
2106
2866
  /** V1 error format. */
2107
- "$.xgafv"?: string;
2867
+ "$.xgafv"?:
2868
+ string;
2108
2869
  /** OAuth access token. */
2109
- access_token?: string;
2870
+ access_token?:
2871
+ string;
2110
2872
  /** Data format for response. */
2111
- alt?: string;
2873
+ alt?:
2874
+ string;
2112
2875
  /** JSONP */
2113
- callback?: string;
2876
+ callback?:
2877
+ string;
2114
2878
  /** Selector specifying which fields to include in a partial response. */
2115
- fields?: string;
2879
+ fields?:
2880
+ string;
2116
2881
  /** A History id. Required. */
2117
- historyId: string;
2882
+ historyId:
2883
+ string;
2118
2884
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2119
- key?: string;
2885
+ key?:
2886
+ string;
2120
2887
  /** OAuth 2.0 token for the current user. */
2121
- oauth_token?: string;
2888
+ oauth_token?:
2889
+ string;
2122
2890
  /** The maximum number of Executions to fetch. Default value: 25. The server will use this default if the field is not set or has a value of 0. Optional. */
2123
- pageSize?: number;
2891
+ pageSize?:
2892
+ number;
2124
2893
  /** A continuation token to resume the query at the next item. Optional. */
2125
- pageToken?: string;
2894
+ pageToken?:
2895
+ string;
2126
2896
  /** Returns response with indentations and line breaks. */
2127
- prettyPrint?: boolean;
2897
+ prettyPrint?:
2898
+ boolean;
2128
2899
  /** A Project id. Required. */
2129
- projectId: string;
2900
+ projectId:
2901
+ string;
2130
2902
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2131
- quotaUser?: string;
2903
+ quotaUser?:
2904
+ string;
2132
2905
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2133
- upload_protocol?: string;
2906
+ upload_protocol?:
2907
+ string;
2134
2908
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2135
- uploadType?: string;
2909
+ uploadType?:
2910
+ string;
2136
2911
  }): Request<ListExecutionsResponse>;
2137
2912
  /**
2138
2913
  * Updates an existing Execution with the supplied partial entity. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write
@@ -2141,74 +2916,108 @@ declare namespace gapi.client {
2141
2916
  */
2142
2917
  patch(request: {
2143
2918
  /** V1 error format. */
2144
- "$.xgafv"?: string;
2919
+ "$.xgafv"?:
2920
+ string;
2145
2921
  /** OAuth access token. */
2146
- access_token?: string;
2922
+ access_token?:
2923
+ string;
2147
2924
  /** Data format for response. */
2148
- alt?: string;
2925
+ alt?:
2926
+ string;
2149
2927
  /** JSONP */
2150
- callback?: string;
2928
+ callback?:
2929
+ string;
2151
2930
  /** Required. */
2152
- executionId: string;
2931
+ executionId:
2932
+ string;
2153
2933
  /** Selector specifying which fields to include in a partial response. */
2154
- fields?: string;
2934
+ fields?:
2935
+ string;
2155
2936
  /** Required. */
2156
- historyId: string;
2937
+ historyId:
2938
+ string;
2157
2939
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2158
- key?: string;
2940
+ key?:
2941
+ string;
2159
2942
  /** OAuth 2.0 token for the current user. */
2160
- oauth_token?: string;
2943
+ oauth_token?:
2944
+ string;
2161
2945
  /** Returns response with indentations and line breaks. */
2162
- prettyPrint?: boolean;
2946
+ prettyPrint?:
2947
+ boolean;
2163
2948
  /** A Project id. Required. */
2164
- projectId: string;
2949
+ projectId:
2950
+ string;
2165
2951
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2166
- quotaUser?: string;
2952
+ quotaUser?:
2953
+ string;
2167
2954
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
2168
- requestId?: string;
2955
+ requestId?:
2956
+ string;
2169
2957
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2170
- upload_protocol?: string;
2958
+ upload_protocol?:
2959
+ string;
2171
2960
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2172
- uploadType?: string;
2961
+ uploadType?:
2962
+ string;
2173
2963
  /** Request body */
2174
- resource: Execution;
2964
+ resource:
2965
+ Execution;
2175
2966
  }): Request<Execution>;
2176
2967
  patch(request: {
2177
2968
  /** V1 error format. */
2178
- "$.xgafv"?: string;
2969
+ "$.xgafv"?:
2970
+ string;
2179
2971
  /** OAuth access token. */
2180
- access_token?: string;
2972
+ access_token?:
2973
+ string;
2181
2974
  /** Data format for response. */
2182
- alt?: string;
2975
+ alt?:
2976
+ string;
2183
2977
  /** JSONP */
2184
- callback?: string;
2978
+ callback?:
2979
+ string;
2185
2980
  /** Required. */
2186
- executionId: string;
2981
+ executionId:
2982
+ string;
2187
2983
  /** Selector specifying which fields to include in a partial response. */
2188
- fields?: string;
2984
+ fields?:
2985
+ string;
2189
2986
  /** Required. */
2190
- historyId: string;
2987
+ historyId:
2988
+ string;
2191
2989
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2192
- key?: string;
2990
+ key?:
2991
+ string;
2193
2992
  /** OAuth 2.0 token for the current user. */
2194
- oauth_token?: string;
2993
+ oauth_token?:
2994
+ string;
2195
2995
  /** Returns response with indentations and line breaks. */
2196
- prettyPrint?: boolean;
2996
+ prettyPrint?:
2997
+ boolean;
2197
2998
  /** A Project id. Required. */
2198
- projectId: string;
2999
+ projectId:
3000
+ string;
2199
3001
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2200
- quotaUser?: string;
3002
+ quotaUser?:
3003
+ string;
2201
3004
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
2202
- requestId?: string;
3005
+ requestId?:
3006
+ string;
2203
3007
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2204
- upload_protocol?: string;
3008
+ upload_protocol?:
3009
+ string;
2205
3010
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2206
- uploadType?: string;
3011
+ uploadType?:
3012
+ string;
2207
3013
  },
2208
3014
  body: Execution): Request<Execution>;
2209
- clusters: ClustersResource;
2210
- environments: EnvironmentsResource;
2211
- steps: StepsResource;
3015
+ clusters:
3016
+ ClustersResource;
3017
+ environments:
3018
+ EnvironmentsResource;
3019
+ steps:
3020
+ StepsResource;
2212
3021
  }
2213
3022
  interface HistoriesResource {
2214
3023
  /**
@@ -2217,61 +3026,88 @@ declare namespace gapi.client {
2217
3026
  */
2218
3027
  create(request: {
2219
3028
  /** V1 error format. */
2220
- "$.xgafv"?: string;
3029
+ "$.xgafv"?:
3030
+ string;
2221
3031
  /** OAuth access token. */
2222
- access_token?: string;
3032
+ access_token?:
3033
+ string;
2223
3034
  /** Data format for response. */
2224
- alt?: string;
3035
+ alt?:
3036
+ string;
2225
3037
  /** JSONP */
2226
- callback?: string;
3038
+ callback?:
3039
+ string;
2227
3040
  /** Selector specifying which fields to include in a partial response. */
2228
- fields?: string;
3041
+ fields?:
3042
+ string;
2229
3043
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2230
- key?: string;
3044
+ key?:
3045
+ string;
2231
3046
  /** OAuth 2.0 token for the current user. */
2232
- oauth_token?: string;
3047
+ oauth_token?:
3048
+ string;
2233
3049
  /** Returns response with indentations and line breaks. */
2234
- prettyPrint?: boolean;
3050
+ prettyPrint?:
3051
+ boolean;
2235
3052
  /** A Project id. Required. */
2236
- projectId: string;
3053
+ projectId:
3054
+ string;
2237
3055
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2238
- quotaUser?: string;
3056
+ quotaUser?:
3057
+ string;
2239
3058
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
2240
- requestId?: string;
3059
+ requestId?:
3060
+ string;
2241
3061
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2242
- upload_protocol?: string;
3062
+ upload_protocol?:
3063
+ string;
2243
3064
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2244
- uploadType?: string;
3065
+ uploadType?:
3066
+ string;
2245
3067
  /** Request body */
2246
- resource: History;
3068
+ resource:
3069
+ History;
2247
3070
  }): Request<History>;
2248
3071
  create(request: {
2249
3072
  /** V1 error format. */
2250
- "$.xgafv"?: string;
3073
+ "$.xgafv"?:
3074
+ string;
2251
3075
  /** OAuth access token. */
2252
- access_token?: string;
3076
+ access_token?:
3077
+ string;
2253
3078
  /** Data format for response. */
2254
- alt?: string;
3079
+ alt?:
3080
+ string;
2255
3081
  /** JSONP */
2256
- callback?: string;
3082
+ callback?:
3083
+ string;
2257
3084
  /** Selector specifying which fields to include in a partial response. */
2258
- fields?: string;
3085
+ fields?:
3086
+ string;
2259
3087
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2260
- key?: string;
3088
+ key?:
3089
+ string;
2261
3090
  /** OAuth 2.0 token for the current user. */
2262
- oauth_token?: string;
3091
+ oauth_token?:
3092
+ string;
2263
3093
  /** Returns response with indentations and line breaks. */
2264
- prettyPrint?: boolean;
3094
+ prettyPrint?:
3095
+ boolean;
2265
3096
  /** A Project id. Required. */
2266
- projectId: string;
3097
+ projectId:
3098
+ string;
2267
3099
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2268
- quotaUser?: string;
3100
+ quotaUser?:
3101
+ string;
2269
3102
  /** A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended. */
2270
- requestId?: string;
3103
+ requestId?:
3104
+ string;
2271
3105
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2272
- upload_protocol?: string;
3106
+ upload_protocol?:
3107
+ string;
2273
3108
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2274
- uploadType?: string;
3109
+ uploadType?:
3110
+ string;
2275
3111
  },
2276
3112
  body: History): Request<History>;
2277
3113
  /**
@@ -2280,31 +3116,44 @@ declare namespace gapi.client {
2280
3116
  */
2281
3117
  get(request?: {
2282
3118
  /** V1 error format. */
2283
- "$.xgafv"?: string;
3119
+ "$.xgafv"?:
3120
+ string;
2284
3121
  /** OAuth access token. */
2285
- access_token?: string;
3122
+ access_token?:
3123
+ string;
2286
3124
  /** Data format for response. */
2287
- alt?: string;
3125
+ alt?:
3126
+ string;
2288
3127
  /** JSONP */
2289
- callback?: string;
3128
+ callback?:
3129
+ string;
2290
3130
  /** Selector specifying which fields to include in a partial response. */
2291
- fields?: string;
3131
+ fields?:
3132
+ string;
2292
3133
  /** A History id. Required. */
2293
- historyId: string;
3134
+ historyId:
3135
+ string;
2294
3136
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2295
- key?: string;
3137
+ key?:
3138
+ string;
2296
3139
  /** OAuth 2.0 token for the current user. */
2297
- oauth_token?: string;
3140
+ oauth_token?:
3141
+ string;
2298
3142
  /** Returns response with indentations and line breaks. */
2299
- prettyPrint?: boolean;
3143
+ prettyPrint?:
3144
+ boolean;
2300
3145
  /** A Project id. Required. */
2301
- projectId: string;
3146
+ projectId:
3147
+ string;
2302
3148
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2303
- quotaUser?: string;
3149
+ quotaUser?:
3150
+ string;
2304
3151
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2305
- upload_protocol?: string;
3152
+ upload_protocol?:
3153
+ string;
2306
3154
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2307
- uploadType?: string;
3155
+ uploadType?:
3156
+ string;
2308
3157
  }): Request<History>;
2309
3158
  /**
2310
3159
  * Lists Histories for a given Project. The histories are sorted by modification time in descending order. The history_id key will be used to order the history with the same
@@ -2313,68 +3162,96 @@ declare namespace gapi.client {
2313
3162
  */
2314
3163
  list(request?: {
2315
3164
  /** V1 error format. */
2316
- "$.xgafv"?: string;
3165
+ "$.xgafv"?:
3166
+ string;
2317
3167
  /** OAuth access token. */
2318
- access_token?: string;
3168
+ access_token?:
3169
+ string;
2319
3170
  /** Data format for response. */
2320
- alt?: string;
3171
+ alt?:
3172
+ string;
2321
3173
  /** JSONP */
2322
- callback?: string;
3174
+ callback?:
3175
+ string;
2323
3176
  /** Selector specifying which fields to include in a partial response. */
2324
- fields?: string;
3177
+ fields?:
3178
+ string;
2325
3179
  /** If set, only return histories with the given name. Optional. */
2326
- filterByName?: string;
3180
+ filterByName?:
3181
+ string;
2327
3182
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2328
- key?: string;
3183
+ key?:
3184
+ string;
2329
3185
  /** OAuth 2.0 token for the current user. */
2330
- oauth_token?: string;
3186
+ oauth_token?:
3187
+ string;
2331
3188
  /**
2332
3189
  * The maximum number of Histories to fetch. Default value: 20. The server will use this default if the field is not set or has a value of 0. Any value greater than 100 will be
2333
3190
  * treated as 100. Optional.
2334
3191
  */
2335
- pageSize?: number;
3192
+ pageSize?:
3193
+ number;
2336
3194
  /** A continuation token to resume the query at the next item. Optional. */
2337
- pageToken?: string;
3195
+ pageToken?:
3196
+ string;
2338
3197
  /** Returns response with indentations and line breaks. */
2339
- prettyPrint?: boolean;
3198
+ prettyPrint?:
3199
+ boolean;
2340
3200
  /** A Project id. Required. */
2341
- projectId: string;
3201
+ projectId:
3202
+ string;
2342
3203
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2343
- quotaUser?: string;
3204
+ quotaUser?:
3205
+ string;
2344
3206
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2345
- upload_protocol?: string;
3207
+ upload_protocol?:
3208
+ string;
2346
3209
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2347
- uploadType?: string;
3210
+ uploadType?:
3211
+ string;
2348
3212
  }): Request<ListHistoriesResponse>;
2349
- executions: ExecutionsResource;
3213
+ executions:
3214
+ ExecutionsResource;
2350
3215
  }
2351
3216
  interface ProjectsResource {
2352
3217
  /** Gets the Tool Results settings for a project. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read from project */
2353
3218
  getSettings(request?: {
2354
3219
  /** V1 error format. */
2355
- "$.xgafv"?: string;
3220
+ "$.xgafv"?:
3221
+ string;
2356
3222
  /** OAuth access token. */
2357
- access_token?: string;
3223
+ access_token?:
3224
+ string;
2358
3225
  /** Data format for response. */
2359
- alt?: string;
3226
+ alt?:
3227
+ string;
2360
3228
  /** JSONP */
2361
- callback?: string;
3229
+ callback?:
3230
+ string;
2362
3231
  /** Selector specifying which fields to include in a partial response. */
2363
- fields?: string;
3232
+ fields?:
3233
+ string;
2364
3234
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2365
- key?: string;
3235
+ key?:
3236
+ string;
2366
3237
  /** OAuth 2.0 token for the current user. */
2367
- oauth_token?: string;
3238
+ oauth_token?:
3239
+ string;
2368
3240
  /** Returns response with indentations and line breaks. */
2369
- prettyPrint?: boolean;
3241
+ prettyPrint?:
3242
+ boolean;
2370
3243
  /** A Project id. Required. */
2371
- projectId: string;
3244
+ projectId:
3245
+ string;
2372
3246
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2373
- quotaUser?: string;
3247
+ quotaUser?:
3248
+ string;
2374
3249
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2375
- upload_protocol?: string;
3250
+ upload_protocol?:
3251
+ string;
2376
3252
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2377
- uploadType?: string;
3253
+ uploadType?:
3254
+ string;
2378
3255
  }): Request<ProjectSettings>;
2379
3256
  /**
2380
3257
  * Creates resources for settings which have not yet been set. Currently, this creates a single resource: a Google Cloud Storage bucket, to be used as the default bucket for this
@@ -2388,31 +3265,44 @@ declare namespace gapi.client {
2388
3265
  */
2389
3266
  initializeSettings(request?: {
2390
3267
  /** V1 error format. */
2391
- "$.xgafv"?: string;
3268
+ "$.xgafv"?:
3269
+ string;
2392
3270
  /** OAuth access token. */
2393
- access_token?: string;
3271
+ access_token?:
3272
+ string;
2394
3273
  /** Data format for response. */
2395
- alt?: string;
3274
+ alt?:
3275
+ string;
2396
3276
  /** JSONP */
2397
- callback?: string;
3277
+ callback?:
3278
+ string;
2398
3279
  /** Selector specifying which fields to include in a partial response. */
2399
- fields?: string;
3280
+ fields?:
3281
+ string;
2400
3282
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2401
- key?: string;
3283
+ key?:
3284
+ string;
2402
3285
  /** OAuth 2.0 token for the current user. */
2403
- oauth_token?: string;
3286
+ oauth_token?:
3287
+ string;
2404
3288
  /** Returns response with indentations and line breaks. */
2405
- prettyPrint?: boolean;
3289
+ prettyPrint?:
3290
+ boolean;
2406
3291
  /** A Project id. Required. */
2407
- projectId: string;
3292
+ projectId:
3293
+ string;
2408
3294
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2409
- quotaUser?: string;
3295
+ quotaUser?:
3296
+ string;
2410
3297
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2411
- upload_protocol?: string;
3298
+ upload_protocol?:
3299
+ string;
2412
3300
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2413
- uploadType?: string;
3301
+ uploadType?:
3302
+ string;
2414
3303
  }): Request<ProjectSettings>;
2415
- histories: HistoriesResource;
3304
+ histories:
3305
+ HistoriesResource;
2416
3306
  }
2417
3307
 
2418
3308
  const projects: ProjectsResource;