@googleapis/toolresults 0.2.0 → 0.3.1
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.
- package/CHANGELOG.md +30 -0
- package/README.md +4 -23
- package/build/v1beta3.d.ts +148 -147
- package/build/v1beta3.js +48 -25
- package/build/v1beta3.js.map +1 -1
- package/package.json +2 -2
- package/v1beta3.ts +206 -184
package/v1beta3.ts
CHANGED
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
// limitations under the License.
|
|
13
13
|
|
|
14
14
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
15
|
-
/* eslint-disable @typescript-eslint/class-name-casing */
|
|
16
15
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
17
16
|
/* eslint-disable @typescript-eslint/no-empty-interface */
|
|
18
17
|
/* eslint-disable @typescript-eslint/no-namespace */
|
|
@@ -2548,9 +2547,8 @@ export namespace toolresults_v1beta3 {
|
|
|
2548
2547
|
this.clusters = new Resource$Projects$Histories$Executions$Clusters(
|
|
2549
2548
|
this.context
|
|
2550
2549
|
);
|
|
2551
|
-
this.environments =
|
|
2552
|
-
this.context
|
|
2553
|
-
);
|
|
2550
|
+
this.environments =
|
|
2551
|
+
new Resource$Projects$Histories$Executions$Environments(this.context);
|
|
2554
2552
|
this.steps = new Resource$Projects$Histories$Executions$Steps(
|
|
2555
2553
|
this.context
|
|
2556
2554
|
);
|
|
@@ -3340,7 +3338,8 @@ export namespace toolresults_v1beta3 {
|
|
|
3340
3338
|
|
|
3341
3339
|
if (typeof paramsOrCallback === 'function') {
|
|
3342
3340
|
callback = paramsOrCallback;
|
|
3343
|
-
params =
|
|
3341
|
+
params =
|
|
3342
|
+
{} as Params$Resource$Projects$Histories$Executions$Clusters$Get;
|
|
3344
3343
|
options = {};
|
|
3345
3344
|
}
|
|
3346
3345
|
|
|
@@ -3480,7 +3479,8 @@ export namespace toolresults_v1beta3 {
|
|
|
3480
3479
|
|
|
3481
3480
|
if (typeof paramsOrCallback === 'function') {
|
|
3482
3481
|
callback = paramsOrCallback;
|
|
3483
|
-
params =
|
|
3482
|
+
params =
|
|
3483
|
+
{} as Params$Resource$Projects$Histories$Executions$Clusters$List;
|
|
3484
3484
|
options = {};
|
|
3485
3485
|
}
|
|
3486
3486
|
|
|
@@ -3669,7 +3669,8 @@ export namespace toolresults_v1beta3 {
|
|
|
3669
3669
|
|
|
3670
3670
|
if (typeof paramsOrCallback === 'function') {
|
|
3671
3671
|
callback = paramsOrCallback;
|
|
3672
|
-
params =
|
|
3672
|
+
params =
|
|
3673
|
+
{} as Params$Resource$Projects$Histories$Executions$Environments$Get;
|
|
3673
3674
|
options = {};
|
|
3674
3675
|
}
|
|
3675
3676
|
|
|
@@ -3822,7 +3823,8 @@ export namespace toolresults_v1beta3 {
|
|
|
3822
3823
|
|
|
3823
3824
|
if (typeof paramsOrCallback === 'function') {
|
|
3824
3825
|
callback = paramsOrCallback;
|
|
3825
|
-
params =
|
|
3826
|
+
params =
|
|
3827
|
+
{} as Params$Resource$Projects$Histories$Executions$Environments$List;
|
|
3826
3828
|
options = {};
|
|
3827
3829
|
}
|
|
3828
3830
|
|
|
@@ -3910,18 +3912,22 @@ export namespace toolresults_v1beta3 {
|
|
|
3910
3912
|
thumbnails: Resource$Projects$Histories$Executions$Steps$Thumbnails;
|
|
3911
3913
|
constructor(context: APIRequestContext) {
|
|
3912
3914
|
this.context = context;
|
|
3913
|
-
this.perfMetricsSummary =
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3915
|
+
this.perfMetricsSummary =
|
|
3916
|
+
new Resource$Projects$Histories$Executions$Steps$Perfmetricssummary(
|
|
3917
|
+
this.context
|
|
3918
|
+
);
|
|
3919
|
+
this.perfSampleSeries =
|
|
3920
|
+
new Resource$Projects$Histories$Executions$Steps$Perfsampleseries(
|
|
3921
|
+
this.context
|
|
3922
|
+
);
|
|
3923
|
+
this.testCases =
|
|
3924
|
+
new Resource$Projects$Histories$Executions$Steps$Testcases(
|
|
3925
|
+
this.context
|
|
3926
|
+
);
|
|
3927
|
+
this.thumbnails =
|
|
3928
|
+
new Resource$Projects$Histories$Executions$Steps$Thumbnails(
|
|
3929
|
+
this.context
|
|
3930
|
+
);
|
|
3925
3931
|
}
|
|
3926
3932
|
|
|
3927
3933
|
/**
|
|
@@ -3950,15 +3956,15 @@ export namespace toolresults_v1beta3 {
|
|
|
3950
3956
|
* google.options({auth: authClient});
|
|
3951
3957
|
*
|
|
3952
3958
|
* // Do the magic
|
|
3953
|
-
* const res =
|
|
3954
|
-
*
|
|
3955
|
-
*
|
|
3956
|
-
*
|
|
3957
|
-
*
|
|
3958
|
-
*
|
|
3959
|
-
* 'projects/my-project/histories/my-historie/executions/my-execution/steps/my-step',
|
|
3960
|
-
*
|
|
3961
|
-
*
|
|
3959
|
+
* const res =
|
|
3960
|
+
* await toolresults.projects.histories.executions.steps.accessibilityClusters(
|
|
3961
|
+
* {
|
|
3962
|
+
* // The accepted format is the canonical Unicode format with hyphen as a delimiter. Language must be lowercase, Language Script - Capitalized, Region - UPPERCASE. See http://www.unicode.org/reports/tr35/#Unicode_locale_identifier for details. Required.
|
|
3963
|
+
* locale: 'placeholder-value',
|
|
3964
|
+
* // A full resource name of the step. For example, projects/my-project/histories/bh.1234567890abcdef/executions/ 1234567890123456789/steps/bs.1234567890abcdef Required.
|
|
3965
|
+
* name: 'projects/my-project/histories/my-historie/executions/my-execution/steps/my-step',
|
|
3966
|
+
* }
|
|
3967
|
+
* );
|
|
3962
3968
|
* console.log(res.data);
|
|
3963
3969
|
*
|
|
3964
3970
|
* // Example response
|
|
@@ -4030,7 +4036,8 @@ export namespace toolresults_v1beta3 {
|
|
|
4030
4036
|
|
|
4031
4037
|
if (typeof paramsOrCallback === 'function') {
|
|
4032
4038
|
callback = paramsOrCallback;
|
|
4033
|
-
params =
|
|
4039
|
+
params =
|
|
4040
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Accessibilityclusters;
|
|
4034
4041
|
options = {};
|
|
4035
4042
|
}
|
|
4036
4043
|
|
|
@@ -4202,7 +4209,8 @@ export namespace toolresults_v1beta3 {
|
|
|
4202
4209
|
|
|
4203
4210
|
if (typeof paramsOrCallback === 'function') {
|
|
4204
4211
|
callback = paramsOrCallback;
|
|
4205
|
-
params =
|
|
4212
|
+
params =
|
|
4213
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Create;
|
|
4206
4214
|
options = {};
|
|
4207
4215
|
}
|
|
4208
4216
|
|
|
@@ -4413,18 +4421,19 @@ export namespace toolresults_v1beta3 {
|
|
|
4413
4421
|
* google.options({auth: authClient});
|
|
4414
4422
|
*
|
|
4415
4423
|
* // Do the magic
|
|
4416
|
-
* const res =
|
|
4417
|
-
*
|
|
4418
|
-
*
|
|
4419
|
-
*
|
|
4420
|
-
*
|
|
4421
|
-
*
|
|
4422
|
-
*
|
|
4423
|
-
*
|
|
4424
|
-
*
|
|
4425
|
-
*
|
|
4426
|
-
*
|
|
4427
|
-
*
|
|
4424
|
+
* const res =
|
|
4425
|
+
* await toolresults.projects.histories.executions.steps.getPerfMetricsSummary(
|
|
4426
|
+
* {
|
|
4427
|
+
* // A tool results execution ID.
|
|
4428
|
+
* executionId: 'placeholder-value',
|
|
4429
|
+
* // A tool results history ID.
|
|
4430
|
+
* historyId: 'placeholder-value',
|
|
4431
|
+
* // The cloud project
|
|
4432
|
+
* projectId: 'placeholder-value',
|
|
4433
|
+
* // A tool results step ID.
|
|
4434
|
+
* stepId: 'placeholder-value',
|
|
4435
|
+
* }
|
|
4436
|
+
* );
|
|
4428
4437
|
* console.log(res.data);
|
|
4429
4438
|
*
|
|
4430
4439
|
* // Example response
|
|
@@ -4500,7 +4509,8 @@ export namespace toolresults_v1beta3 {
|
|
|
4500
4509
|
|
|
4501
4510
|
if (typeof paramsOrCallback === 'function') {
|
|
4502
4511
|
callback = paramsOrCallback;
|
|
4503
|
-
params =
|
|
4512
|
+
params =
|
|
4513
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Getperfmetricssummary;
|
|
4504
4514
|
options = {};
|
|
4505
4515
|
}
|
|
4506
4516
|
|
|
@@ -4814,7 +4824,8 @@ export namespace toolresults_v1beta3 {
|
|
|
4814
4824
|
|
|
4815
4825
|
if (typeof paramsOrCallback === 'function') {
|
|
4816
4826
|
callback = paramsOrCallback;
|
|
4817
|
-
params =
|
|
4827
|
+
params =
|
|
4828
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Patch;
|
|
4818
4829
|
options = {};
|
|
4819
4830
|
}
|
|
4820
4831
|
|
|
@@ -4876,8 +4887,8 @@ export namespace toolresults_v1beta3 {
|
|
|
4876
4887
|
* google.options({auth: authClient});
|
|
4877
4888
|
*
|
|
4878
4889
|
* // Do the magic
|
|
4879
|
-
* const res =
|
|
4880
|
-
* {
|
|
4890
|
+
* const res =
|
|
4891
|
+
* await toolresults.projects.histories.executions.steps.publishXunitXmlFiles({
|
|
4881
4892
|
* // A Execution id. Required.
|
|
4882
4893
|
* executionId: 'placeholder-value',
|
|
4883
4894
|
* // A History id. Required.
|
|
@@ -4894,8 +4905,7 @@ export namespace toolresults_v1beta3 {
|
|
|
4894
4905
|
* // "xunitXmlFiles": []
|
|
4895
4906
|
* // }
|
|
4896
4907
|
* },
|
|
4897
|
-
* }
|
|
4898
|
-
* );
|
|
4908
|
+
* });
|
|
4899
4909
|
* console.log(res.data);
|
|
4900
4910
|
*
|
|
4901
4911
|
* // Example response
|
|
@@ -4973,7 +4983,8 @@ export namespace toolresults_v1beta3 {
|
|
|
4973
4983
|
|
|
4974
4984
|
if (typeof paramsOrCallback === 'function') {
|
|
4975
4985
|
callback = paramsOrCallback;
|
|
4976
|
-
params =
|
|
4986
|
+
params =
|
|
4987
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Publishxunitxmlfiles;
|
|
4977
4988
|
options = {};
|
|
4978
4989
|
}
|
|
4979
4990
|
|
|
@@ -5191,33 +5202,34 @@ export namespace toolresults_v1beta3 {
|
|
|
5191
5202
|
* google.options({auth: authClient});
|
|
5192
5203
|
*
|
|
5193
5204
|
* // Do the magic
|
|
5194
|
-
* const res =
|
|
5195
|
-
*
|
|
5196
|
-
*
|
|
5197
|
-
*
|
|
5198
|
-
*
|
|
5199
|
-
*
|
|
5200
|
-
*
|
|
5201
|
-
*
|
|
5202
|
-
*
|
|
5203
|
-
*
|
|
5204
|
-
*
|
|
5205
|
-
*
|
|
5206
|
-
*
|
|
5207
|
-
*
|
|
5208
|
-
*
|
|
5209
|
-
*
|
|
5210
|
-
*
|
|
5211
|
-
*
|
|
5212
|
-
*
|
|
5213
|
-
*
|
|
5214
|
-
*
|
|
5215
|
-
*
|
|
5216
|
-
*
|
|
5217
|
-
*
|
|
5218
|
-
*
|
|
5219
|
-
*
|
|
5220
|
-
*
|
|
5205
|
+
* const res =
|
|
5206
|
+
* await toolresults.projects.histories.executions.steps.perfMetricsSummary.create(
|
|
5207
|
+
* {
|
|
5208
|
+
* // A tool results execution ID.
|
|
5209
|
+
* executionId: 'placeholder-value',
|
|
5210
|
+
* // A tool results history ID.
|
|
5211
|
+
* historyId: 'placeholder-value',
|
|
5212
|
+
* // The cloud project
|
|
5213
|
+
* projectId: 'placeholder-value',
|
|
5214
|
+
* // A tool results step ID.
|
|
5215
|
+
* stepId: 'placeholder-value',
|
|
5216
|
+
*
|
|
5217
|
+
* // Request body metadata
|
|
5218
|
+
* requestBody: {
|
|
5219
|
+
* // request body parameters
|
|
5220
|
+
* // {
|
|
5221
|
+
* // "appStartTime": {},
|
|
5222
|
+
* // "executionId": "my_executionId",
|
|
5223
|
+
* // "graphicsStats": {},
|
|
5224
|
+
* // "historyId": "my_historyId",
|
|
5225
|
+
* // "perfEnvironment": {},
|
|
5226
|
+
* // "perfMetrics": [],
|
|
5227
|
+
* // "projectId": "my_projectId",
|
|
5228
|
+
* // "stepId": "my_stepId"
|
|
5229
|
+
* // }
|
|
5230
|
+
* },
|
|
5231
|
+
* }
|
|
5232
|
+
* );
|
|
5221
5233
|
* console.log(res.data);
|
|
5222
5234
|
*
|
|
5223
5235
|
* // Example response
|
|
@@ -5291,7 +5303,8 @@ export namespace toolresults_v1beta3 {
|
|
|
5291
5303
|
|
|
5292
5304
|
if (typeof paramsOrCallback === 'function') {
|
|
5293
5305
|
callback = paramsOrCallback;
|
|
5294
|
-
params =
|
|
5306
|
+
params =
|
|
5307
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Perfmetricssummary$Create;
|
|
5295
5308
|
options = {};
|
|
5296
5309
|
}
|
|
5297
5310
|
|
|
@@ -5358,9 +5371,10 @@ export namespace toolresults_v1beta3 {
|
|
|
5358
5371
|
samples: Resource$Projects$Histories$Executions$Steps$Perfsampleseries$Samples;
|
|
5359
5372
|
constructor(context: APIRequestContext) {
|
|
5360
5373
|
this.context = context;
|
|
5361
|
-
this.samples =
|
|
5362
|
-
|
|
5363
|
-
|
|
5374
|
+
this.samples =
|
|
5375
|
+
new Resource$Projects$Histories$Executions$Steps$Perfsampleseries$Samples(
|
|
5376
|
+
this.context
|
|
5377
|
+
);
|
|
5364
5378
|
}
|
|
5365
5379
|
|
|
5366
5380
|
/**
|
|
@@ -5389,31 +5403,32 @@ export namespace toolresults_v1beta3 {
|
|
|
5389
5403
|
* google.options({auth: authClient});
|
|
5390
5404
|
*
|
|
5391
5405
|
* // Do the magic
|
|
5392
|
-
* const res =
|
|
5393
|
-
*
|
|
5394
|
-
*
|
|
5395
|
-
*
|
|
5396
|
-
*
|
|
5397
|
-
*
|
|
5398
|
-
*
|
|
5399
|
-
*
|
|
5400
|
-
*
|
|
5401
|
-
*
|
|
5402
|
-
*
|
|
5403
|
-
*
|
|
5404
|
-
*
|
|
5405
|
-
*
|
|
5406
|
-
*
|
|
5407
|
-
*
|
|
5408
|
-
*
|
|
5409
|
-
*
|
|
5410
|
-
*
|
|
5411
|
-
*
|
|
5412
|
-
*
|
|
5413
|
-
*
|
|
5414
|
-
*
|
|
5415
|
-
*
|
|
5416
|
-
*
|
|
5406
|
+
* const res =
|
|
5407
|
+
* await toolresults.projects.histories.executions.steps.perfSampleSeries.create(
|
|
5408
|
+
* {
|
|
5409
|
+
* // A tool results execution ID.
|
|
5410
|
+
* executionId: 'placeholder-value',
|
|
5411
|
+
* // A tool results history ID.
|
|
5412
|
+
* historyId: 'placeholder-value',
|
|
5413
|
+
* // The cloud project
|
|
5414
|
+
* projectId: 'placeholder-value',
|
|
5415
|
+
* // A tool results step ID.
|
|
5416
|
+
* stepId: 'placeholder-value',
|
|
5417
|
+
*
|
|
5418
|
+
* // Request body metadata
|
|
5419
|
+
* requestBody: {
|
|
5420
|
+
* // request body parameters
|
|
5421
|
+
* // {
|
|
5422
|
+
* // "basicPerfSampleSeries": {},
|
|
5423
|
+
* // "executionId": "my_executionId",
|
|
5424
|
+
* // "historyId": "my_historyId",
|
|
5425
|
+
* // "projectId": "my_projectId",
|
|
5426
|
+
* // "sampleSeriesId": "my_sampleSeriesId",
|
|
5427
|
+
* // "stepId": "my_stepId"
|
|
5428
|
+
* // }
|
|
5429
|
+
* },
|
|
5430
|
+
* }
|
|
5431
|
+
* );
|
|
5417
5432
|
* console.log(res.data);
|
|
5418
5433
|
*
|
|
5419
5434
|
* // Example response
|
|
@@ -5482,7 +5497,8 @@ export namespace toolresults_v1beta3 {
|
|
|
5482
5497
|
|
|
5483
5498
|
if (typeof paramsOrCallback === 'function') {
|
|
5484
5499
|
callback = paramsOrCallback;
|
|
5485
|
-
params =
|
|
5500
|
+
params =
|
|
5501
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Perfsampleseries$Create;
|
|
5486
5502
|
options = {};
|
|
5487
5503
|
}
|
|
5488
5504
|
|
|
@@ -5544,8 +5560,8 @@ export namespace toolresults_v1beta3 {
|
|
|
5544
5560
|
* google.options({auth: authClient});
|
|
5545
5561
|
*
|
|
5546
5562
|
* // Do the magic
|
|
5547
|
-
* const res =
|
|
5548
|
-
* {
|
|
5563
|
+
* const res =
|
|
5564
|
+
* await toolresults.projects.histories.executions.steps.perfSampleSeries.get({
|
|
5549
5565
|
* // A tool results execution ID.
|
|
5550
5566
|
* executionId: 'placeholder-value',
|
|
5551
5567
|
* // A tool results history ID.
|
|
@@ -5556,8 +5572,7 @@ export namespace toolresults_v1beta3 {
|
|
|
5556
5572
|
* sampleSeriesId: 'placeholder-value',
|
|
5557
5573
|
* // A tool results step ID.
|
|
5558
5574
|
* stepId: 'placeholder-value',
|
|
5559
|
-
* }
|
|
5560
|
-
* );
|
|
5575
|
+
* });
|
|
5561
5576
|
* console.log(res.data);
|
|
5562
5577
|
*
|
|
5563
5578
|
* // Example response
|
|
@@ -5626,7 +5641,8 @@ export namespace toolresults_v1beta3 {
|
|
|
5626
5641
|
|
|
5627
5642
|
if (typeof paramsOrCallback === 'function') {
|
|
5628
5643
|
callback = paramsOrCallback;
|
|
5629
|
-
params =
|
|
5644
|
+
params =
|
|
5645
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Perfsampleseries$Get;
|
|
5630
5646
|
options = {};
|
|
5631
5647
|
}
|
|
5632
5648
|
|
|
@@ -5700,20 +5716,21 @@ export namespace toolresults_v1beta3 {
|
|
|
5700
5716
|
* google.options({auth: authClient});
|
|
5701
5717
|
*
|
|
5702
5718
|
* // Do the magic
|
|
5703
|
-
* const res =
|
|
5704
|
-
*
|
|
5705
|
-
*
|
|
5706
|
-
*
|
|
5707
|
-
*
|
|
5708
|
-
*
|
|
5709
|
-
*
|
|
5710
|
-
*
|
|
5711
|
-
*
|
|
5712
|
-
*
|
|
5713
|
-
*
|
|
5714
|
-
*
|
|
5715
|
-
*
|
|
5716
|
-
*
|
|
5719
|
+
* const res =
|
|
5720
|
+
* await toolresults.projects.histories.executions.steps.perfSampleSeries.list(
|
|
5721
|
+
* {
|
|
5722
|
+
* // A tool results execution ID.
|
|
5723
|
+
* executionId: 'placeholder-value',
|
|
5724
|
+
* // Specify one or more PerfMetricType values such as CPU to filter the result
|
|
5725
|
+
* filter: 'placeholder-value',
|
|
5726
|
+
* // A tool results history ID.
|
|
5727
|
+
* historyId: 'placeholder-value',
|
|
5728
|
+
* // The cloud project
|
|
5729
|
+
* projectId: 'placeholder-value',
|
|
5730
|
+
* // A tool results step ID.
|
|
5731
|
+
* stepId: 'placeholder-value',
|
|
5732
|
+
* }
|
|
5733
|
+
* );
|
|
5717
5734
|
* console.log(res.data);
|
|
5718
5735
|
*
|
|
5719
5736
|
* // Example response
|
|
@@ -5784,7 +5801,8 @@ export namespace toolresults_v1beta3 {
|
|
|
5784
5801
|
|
|
5785
5802
|
if (typeof paramsOrCallback === 'function') {
|
|
5786
5803
|
callback = paramsOrCallback;
|
|
5787
|
-
params =
|
|
5804
|
+
params =
|
|
5805
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Perfsampleseries$List;
|
|
5788
5806
|
options = {};
|
|
5789
5807
|
}
|
|
5790
5808
|
|
|
@@ -5926,28 +5944,29 @@ export namespace toolresults_v1beta3 {
|
|
|
5926
5944
|
* google.options({auth: authClient});
|
|
5927
5945
|
*
|
|
5928
5946
|
* // Do the magic
|
|
5929
|
-
* const res =
|
|
5930
|
-
*
|
|
5931
|
-
*
|
|
5932
|
-
*
|
|
5933
|
-
*
|
|
5934
|
-
*
|
|
5935
|
-
*
|
|
5936
|
-
*
|
|
5937
|
-
*
|
|
5938
|
-
*
|
|
5939
|
-
*
|
|
5940
|
-
*
|
|
5941
|
-
*
|
|
5942
|
-
*
|
|
5943
|
-
*
|
|
5944
|
-
*
|
|
5945
|
-
*
|
|
5946
|
-
*
|
|
5947
|
-
*
|
|
5948
|
-
*
|
|
5949
|
-
*
|
|
5950
|
-
*
|
|
5947
|
+
* const res =
|
|
5948
|
+
* await toolresults.projects.histories.executions.steps.perfSampleSeries.samples.batchCreate(
|
|
5949
|
+
* {
|
|
5950
|
+
* // A tool results execution ID.
|
|
5951
|
+
* executionId: 'placeholder-value',
|
|
5952
|
+
* // A tool results history ID.
|
|
5953
|
+
* historyId: 'placeholder-value',
|
|
5954
|
+
* // The cloud project
|
|
5955
|
+
* projectId: 'placeholder-value',
|
|
5956
|
+
* // A sample series id
|
|
5957
|
+
* sampleSeriesId: 'placeholder-value',
|
|
5958
|
+
* // A tool results step ID.
|
|
5959
|
+
* stepId: 'placeholder-value',
|
|
5960
|
+
*
|
|
5961
|
+
* // Request body metadata
|
|
5962
|
+
* requestBody: {
|
|
5963
|
+
* // request body parameters
|
|
5964
|
+
* // {
|
|
5965
|
+
* // "perfSamples": []
|
|
5966
|
+
* // }
|
|
5967
|
+
* },
|
|
5968
|
+
* }
|
|
5969
|
+
* );
|
|
5951
5970
|
* console.log(res.data);
|
|
5952
5971
|
*
|
|
5953
5972
|
* // Example response
|
|
@@ -6018,7 +6037,8 @@ export namespace toolresults_v1beta3 {
|
|
|
6018
6037
|
|
|
6019
6038
|
if (typeof paramsOrCallback === 'function') {
|
|
6020
6039
|
callback = paramsOrCallback;
|
|
6021
|
-
params =
|
|
6040
|
+
params =
|
|
6041
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Perfsampleseries$Samples$Batchcreate;
|
|
6022
6042
|
options = {};
|
|
6023
6043
|
}
|
|
6024
6044
|
|
|
@@ -6094,24 +6114,25 @@ export namespace toolresults_v1beta3 {
|
|
|
6094
6114
|
* google.options({auth: authClient});
|
|
6095
6115
|
*
|
|
6096
6116
|
* // Do the magic
|
|
6097
|
-
* const res =
|
|
6098
|
-
*
|
|
6099
|
-
*
|
|
6100
|
-
*
|
|
6101
|
-
*
|
|
6102
|
-
*
|
|
6103
|
-
*
|
|
6104
|
-
*
|
|
6105
|
-
*
|
|
6106
|
-
*
|
|
6107
|
-
*
|
|
6108
|
-
*
|
|
6109
|
-
*
|
|
6110
|
-
*
|
|
6111
|
-
*
|
|
6112
|
-
*
|
|
6113
|
-
*
|
|
6114
|
-
*
|
|
6117
|
+
* const res =
|
|
6118
|
+
* await toolresults.projects.histories.executions.steps.perfSampleSeries.samples.list(
|
|
6119
|
+
* {
|
|
6120
|
+
* // A tool results execution ID.
|
|
6121
|
+
* executionId: 'placeholder-value',
|
|
6122
|
+
* // A tool results history ID.
|
|
6123
|
+
* historyId: 'placeholder-value',
|
|
6124
|
+
* // 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
|
|
6125
|
+
* pageSize: 'placeholder-value',
|
|
6126
|
+
* // Optional, the next_page_token returned in the previous response
|
|
6127
|
+
* pageToken: 'placeholder-value',
|
|
6128
|
+
* // The cloud project
|
|
6129
|
+
* projectId: 'placeholder-value',
|
|
6130
|
+
* // A sample series id
|
|
6131
|
+
* sampleSeriesId: 'placeholder-value',
|
|
6132
|
+
* // A tool results step ID.
|
|
6133
|
+
* stepId: 'placeholder-value',
|
|
6134
|
+
* }
|
|
6135
|
+
* );
|
|
6115
6136
|
* console.log(res.data);
|
|
6116
6137
|
*
|
|
6117
6138
|
* // Example response
|
|
@@ -6181,7 +6202,8 @@ export namespace toolresults_v1beta3 {
|
|
|
6181
6202
|
|
|
6182
6203
|
if (typeof paramsOrCallback === 'function') {
|
|
6183
6204
|
callback = paramsOrCallback;
|
|
6184
|
-
params =
|
|
6205
|
+
params =
|
|
6206
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Perfsampleseries$Samples$List;
|
|
6185
6207
|
options = {};
|
|
6186
6208
|
}
|
|
6187
6209
|
|
|
@@ -6322,8 +6344,8 @@ export namespace toolresults_v1beta3 {
|
|
|
6322
6344
|
* google.options({auth: authClient});
|
|
6323
6345
|
*
|
|
6324
6346
|
* // Do the magic
|
|
6325
|
-
* const res =
|
|
6326
|
-
* {
|
|
6347
|
+
* const res =
|
|
6348
|
+
* await toolresults.projects.histories.executions.steps.testCases.get({
|
|
6327
6349
|
* // A Execution id Required.
|
|
6328
6350
|
* executionId: 'placeholder-value',
|
|
6329
6351
|
* // A History id. Required.
|
|
@@ -6334,8 +6356,7 @@ export namespace toolresults_v1beta3 {
|
|
|
6334
6356
|
* stepId: 'placeholder-value',
|
|
6335
6357
|
* // A Test Case id. Required.
|
|
6336
6358
|
* testCaseId: 'placeholder-value',
|
|
6337
|
-
* }
|
|
6338
|
-
* );
|
|
6359
|
+
* });
|
|
6339
6360
|
* console.log(res.data);
|
|
6340
6361
|
*
|
|
6341
6362
|
* // Example response
|
|
@@ -6407,7 +6428,8 @@ export namespace toolresults_v1beta3 {
|
|
|
6407
6428
|
|
|
6408
6429
|
if (typeof paramsOrCallback === 'function') {
|
|
6409
6430
|
callback = paramsOrCallback;
|
|
6410
|
-
params =
|
|
6431
|
+
params =
|
|
6432
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Testcases$Get;
|
|
6411
6433
|
options = {};
|
|
6412
6434
|
}
|
|
6413
6435
|
|
|
@@ -6481,8 +6503,8 @@ export namespace toolresults_v1beta3 {
|
|
|
6481
6503
|
* google.options({auth: authClient});
|
|
6482
6504
|
*
|
|
6483
6505
|
* // Do the magic
|
|
6484
|
-
* const res =
|
|
6485
|
-
* {
|
|
6506
|
+
* const res =
|
|
6507
|
+
* await toolresults.projects.histories.executions.steps.testCases.list({
|
|
6486
6508
|
* // A Execution id Required.
|
|
6487
6509
|
* executionId: 'placeholder-value',
|
|
6488
6510
|
* // A History id. Required.
|
|
@@ -6495,8 +6517,7 @@ export namespace toolresults_v1beta3 {
|
|
|
6495
6517
|
* projectId: 'placeholder-value',
|
|
6496
6518
|
* // A Step id. Note: This step must include a TestExecutionStep. Required.
|
|
6497
6519
|
* stepId: 'placeholder-value',
|
|
6498
|
-
* }
|
|
6499
|
-
* );
|
|
6520
|
+
* });
|
|
6500
6521
|
* console.log(res.data);
|
|
6501
6522
|
*
|
|
6502
6523
|
* // Example response
|
|
@@ -6566,7 +6587,8 @@ export namespace toolresults_v1beta3 {
|
|
|
6566
6587
|
|
|
6567
6588
|
if (typeof paramsOrCallback === 'function') {
|
|
6568
6589
|
callback = paramsOrCallback;
|
|
6569
|
-
params =
|
|
6590
|
+
params =
|
|
6591
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Testcases$List;
|
|
6570
6592
|
options = {};
|
|
6571
6593
|
}
|
|
6572
6594
|
|
|
@@ -6686,8 +6708,8 @@ export namespace toolresults_v1beta3 {
|
|
|
6686
6708
|
* google.options({auth: authClient});
|
|
6687
6709
|
*
|
|
6688
6710
|
* // Do the magic
|
|
6689
|
-
* const res =
|
|
6690
|
-
* {
|
|
6711
|
+
* const res =
|
|
6712
|
+
* await toolresults.projects.histories.executions.steps.thumbnails.list({
|
|
6691
6713
|
* // An Execution id. Required.
|
|
6692
6714
|
* executionId: 'placeholder-value',
|
|
6693
6715
|
* // A History id. Required.
|
|
@@ -6700,8 +6722,7 @@ export namespace toolresults_v1beta3 {
|
|
|
6700
6722
|
* projectId: 'placeholder-value',
|
|
6701
6723
|
* // A Step id. Required.
|
|
6702
6724
|
* stepId: 'placeholder-value',
|
|
6703
|
-
* }
|
|
6704
|
-
* );
|
|
6725
|
+
* });
|
|
6705
6726
|
* console.log(res.data);
|
|
6706
6727
|
*
|
|
6707
6728
|
* // Example response
|
|
@@ -6773,7 +6794,8 @@ export namespace toolresults_v1beta3 {
|
|
|
6773
6794
|
|
|
6774
6795
|
if (typeof paramsOrCallback === 'function') {
|
|
6775
6796
|
callback = paramsOrCallback;
|
|
6776
|
-
params =
|
|
6797
|
+
params =
|
|
6798
|
+
{} as Params$Resource$Projects$Histories$Executions$Steps$Thumbnails$List;
|
|
6777
6799
|
options = {};
|
|
6778
6800
|
}
|
|
6779
6801
|
|