-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
toolresults-gen.go
10028 lines (9041 loc) · 398 KB
/
toolresults-gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2024 Google LLC.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Code generated file. DO NOT EDIT.
// Package toolresults provides access to the Cloud Tool Results API.
//
// For product documentation, see: https://firebase.google.com/docs/test-lab/
//
// # Library status
//
// These client libraries are officially supported by Google. However, this
// library is considered complete and is in maintenance mode. This means
// that we will address critical bugs and security issues but will not add
// any new features.
//
// When possible, we recommend using our newer
// [Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go)
// that are still actively being worked and iterated on.
//
// # Creating a client
//
// Usage example:
//
// import "google.golang.org/api/toolresults/v1beta3"
// ...
// ctx := context.Background()
// toolresultsService, err := toolresults.NewService(ctx)
//
// In this example, Google Application Default Credentials are used for
// authentication. For information on how to create and obtain Application
// Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.
//
// # Other authentication options
//
// To use an API key for authentication (note: some APIs do not support API
// keys), use [google.golang.org/api/option.WithAPIKey]:
//
// toolresultsService, err := toolresults.NewService(ctx, option.WithAPIKey("AIza..."))
//
// To use an OAuth token (e.g., a user token obtained via a three-legged OAuth
// flow, use [google.golang.org/api/option.WithTokenSource]:
//
// config := &oauth2.Config{...}
// // ...
// token, err := config.Exchange(ctx, ...)
// toolresultsService, err := toolresults.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See [google.golang.org/api/option.ClientOption] for details on options.
package toolresults // import "google.golang.org/api/toolresults/v1beta3"
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"strings"
googleapi "google.golang.org/api/googleapi"
internal "google.golang.org/api/internal"
gensupport "google.golang.org/api/internal/gensupport"
option "google.golang.org/api/option"
internaloption "google.golang.org/api/option/internaloption"
htransport "google.golang.org/api/transport/http"
)
// Always reference these packages, just in case the auto-generated code
// below doesn't.
var _ = bytes.NewBuffer
var _ = strconv.Itoa
var _ = fmt.Sprintf
var _ = json.NewDecoder
var _ = io.Copy
var _ = url.Parse
var _ = gensupport.MarshalJSON
var _ = googleapi.Version
var _ = errors.New
var _ = strings.Replace
var _ = context.Canceled
var _ = internaloption.WithDefaultEndpoint
var _ = internal.Version
const apiId = "toolresults:v1beta3"
const apiName = "toolresults"
const apiVersion = "v1beta3"
const basePath = "https://toolresults.googleapis.com/"
const basePathTemplate = "https://toolresults.UNIVERSE_DOMAIN/"
const mtlsBasePath = "https://toolresults.mtls.googleapis.com/"
const defaultUniverseDomain = "googleapis.com"
// OAuth2 scopes used by this API.
const (
// See, edit, configure, and delete your Google Cloud data and see the
// email address for your Google Account.
CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"
)
// NewService creates a new Service.
func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error) {
scopesOption := internaloption.WithDefaultScopes(
"https://www.googleapis.com/auth/cloud-platform",
)
// NOTE: prepend, so we don't override user-specified scopes.
opts = append([]option.ClientOption{scopesOption}, opts...)
opts = append(opts, internaloption.WithDefaultEndpoint(basePath))
opts = append(opts, internaloption.WithDefaultEndpointTemplate(basePathTemplate))
opts = append(opts, internaloption.WithDefaultMTLSEndpoint(mtlsBasePath))
opts = append(opts, internaloption.WithDefaultUniverseDomain(defaultUniverseDomain))
client, endpoint, err := htransport.NewClient(ctx, opts...)
if err != nil {
return nil, err
}
s, err := New(client)
if err != nil {
return nil, err
}
if endpoint != "" {
s.BasePath = endpoint
}
return s, nil
}
// New creates a new Service. It uses the provided http.Client for requests.
//
// Deprecated: please use NewService instead.
// To provide a custom HTTP client, use option.WithHTTPClient.
// If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.
func New(client *http.Client) (*Service, error) {
if client == nil {
return nil, errors.New("client is nil")
}
s := &Service{client: client, BasePath: basePath}
s.Projects = NewProjectsService(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
Projects *ProjectsService
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewProjectsService(s *Service) *ProjectsService {
rs := &ProjectsService{s: s}
rs.Histories = NewProjectsHistoriesService(s)
return rs
}
type ProjectsService struct {
s *Service
Histories *ProjectsHistoriesService
}
func NewProjectsHistoriesService(s *Service) *ProjectsHistoriesService {
rs := &ProjectsHistoriesService{s: s}
rs.Executions = NewProjectsHistoriesExecutionsService(s)
return rs
}
type ProjectsHistoriesService struct {
s *Service
Executions *ProjectsHistoriesExecutionsService
}
func NewProjectsHistoriesExecutionsService(s *Service) *ProjectsHistoriesExecutionsService {
rs := &ProjectsHistoriesExecutionsService{s: s}
rs.Clusters = NewProjectsHistoriesExecutionsClustersService(s)
rs.Environments = NewProjectsHistoriesExecutionsEnvironmentsService(s)
rs.Steps = NewProjectsHistoriesExecutionsStepsService(s)
return rs
}
type ProjectsHistoriesExecutionsService struct {
s *Service
Clusters *ProjectsHistoriesExecutionsClustersService
Environments *ProjectsHistoriesExecutionsEnvironmentsService
Steps *ProjectsHistoriesExecutionsStepsService
}
func NewProjectsHistoriesExecutionsClustersService(s *Service) *ProjectsHistoriesExecutionsClustersService {
rs := &ProjectsHistoriesExecutionsClustersService{s: s}
return rs
}
type ProjectsHistoriesExecutionsClustersService struct {
s *Service
}
func NewProjectsHistoriesExecutionsEnvironmentsService(s *Service) *ProjectsHistoriesExecutionsEnvironmentsService {
rs := &ProjectsHistoriesExecutionsEnvironmentsService{s: s}
return rs
}
type ProjectsHistoriesExecutionsEnvironmentsService struct {
s *Service
}
func NewProjectsHistoriesExecutionsStepsService(s *Service) *ProjectsHistoriesExecutionsStepsService {
rs := &ProjectsHistoriesExecutionsStepsService{s: s}
rs.PerfMetricsSummary = NewProjectsHistoriesExecutionsStepsPerfMetricsSummaryService(s)
rs.PerfSampleSeries = NewProjectsHistoriesExecutionsStepsPerfSampleSeriesService(s)
rs.TestCases = NewProjectsHistoriesExecutionsStepsTestCasesService(s)
rs.Thumbnails = NewProjectsHistoriesExecutionsStepsThumbnailsService(s)
return rs
}
type ProjectsHistoriesExecutionsStepsService struct {
s *Service
PerfMetricsSummary *ProjectsHistoriesExecutionsStepsPerfMetricsSummaryService
PerfSampleSeries *ProjectsHistoriesExecutionsStepsPerfSampleSeriesService
TestCases *ProjectsHistoriesExecutionsStepsTestCasesService
Thumbnails *ProjectsHistoriesExecutionsStepsThumbnailsService
}
func NewProjectsHistoriesExecutionsStepsPerfMetricsSummaryService(s *Service) *ProjectsHistoriesExecutionsStepsPerfMetricsSummaryService {
rs := &ProjectsHistoriesExecutionsStepsPerfMetricsSummaryService{s: s}
return rs
}
type ProjectsHistoriesExecutionsStepsPerfMetricsSummaryService struct {
s *Service
}
func NewProjectsHistoriesExecutionsStepsPerfSampleSeriesService(s *Service) *ProjectsHistoriesExecutionsStepsPerfSampleSeriesService {
rs := &ProjectsHistoriesExecutionsStepsPerfSampleSeriesService{s: s}
rs.Samples = NewProjectsHistoriesExecutionsStepsPerfSampleSeriesSamplesService(s)
return rs
}
type ProjectsHistoriesExecutionsStepsPerfSampleSeriesService struct {
s *Service
Samples *ProjectsHistoriesExecutionsStepsPerfSampleSeriesSamplesService
}
func NewProjectsHistoriesExecutionsStepsPerfSampleSeriesSamplesService(s *Service) *ProjectsHistoriesExecutionsStepsPerfSampleSeriesSamplesService {
rs := &ProjectsHistoriesExecutionsStepsPerfSampleSeriesSamplesService{s: s}
return rs
}
type ProjectsHistoriesExecutionsStepsPerfSampleSeriesSamplesService struct {
s *Service
}
func NewProjectsHistoriesExecutionsStepsTestCasesService(s *Service) *ProjectsHistoriesExecutionsStepsTestCasesService {
rs := &ProjectsHistoriesExecutionsStepsTestCasesService{s: s}
return rs
}
type ProjectsHistoriesExecutionsStepsTestCasesService struct {
s *Service
}
func NewProjectsHistoriesExecutionsStepsThumbnailsService(s *Service) *ProjectsHistoriesExecutionsStepsThumbnailsService {
rs := &ProjectsHistoriesExecutionsStepsThumbnailsService{s: s}
return rs
}
type ProjectsHistoriesExecutionsStepsThumbnailsService struct {
s *Service
}
// ANR: Additional details for an ANR crash.
type ANR struct {
// StackTrace: The stack trace of the ANR crash. Optional.
StackTrace *StackTrace `json:"stackTrace,omitempty"`
// ForceSendFields is a list of field names (e.g. "StackTrace") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "StackTrace") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ANR) MarshalJSON() ([]byte, error) {
type NoMethod ANR
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AndroidAppInfo: Android app information.
type AndroidAppInfo struct {
// Name: The name of the app. Optional
Name string `json:"name,omitempty"`
// PackageName: The package name of the app. Required.
PackageName string `json:"packageName,omitempty"`
// VersionCode: The internal version code of the app. Optional.
VersionCode string `json:"versionCode,omitempty"`
// VersionName: The version name of the app. Optional.
VersionName string `json:"versionName,omitempty"`
// ForceSendFields is a list of field names (e.g. "Name") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Name") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AndroidAppInfo) MarshalJSON() ([]byte, error) {
type NoMethod AndroidAppInfo
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AndroidInstrumentationTest: A test of an Android application that can
// control an Android component independently of its normal lifecycle.
// See for more information on types of Android tests.
type AndroidInstrumentationTest struct {
// TestPackageId: The java package for the test to be executed. Required
TestPackageId string `json:"testPackageId,omitempty"`
// TestRunnerClass: The InstrumentationTestRunner class. Required
TestRunnerClass string `json:"testRunnerClass,omitempty"`
// TestTargets: 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
// package_name.class_name#method_name" If empty, all targets in the
// module will be run.
TestTargets []string `json:"testTargets,omitempty"`
// UseOrchestrator: The flag indicates whether Android Test Orchestrator
// will be used to run test or not.
UseOrchestrator bool `json:"useOrchestrator,omitempty"`
// ForceSendFields is a list of field names (e.g. "TestPackageId") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "TestPackageId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AndroidInstrumentationTest) MarshalJSON() ([]byte, error) {
type NoMethod AndroidInstrumentationTest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AndroidRoboTest: A test of an android application that explores the
// application on a virtual or physical Android device, finding culprits
// and crashes as it goes.
type AndroidRoboTest struct {
// AppInitialActivity: The initial activity that should be used to start
// the app. Optional
AppInitialActivity string `json:"appInitialActivity,omitempty"`
// BootstrapPackageId: The java package for the bootstrap. Optional
BootstrapPackageId string `json:"bootstrapPackageId,omitempty"`
// BootstrapRunnerClass: The runner class for the bootstrap. Optional
BootstrapRunnerClass string `json:"bootstrapRunnerClass,omitempty"`
// MaxDepth: The max depth of the traversal stack Robo can explore.
// Optional
MaxDepth int64 `json:"maxDepth,omitempty"`
// MaxSteps: The max number of steps/actions Robo can execute. Default
// is no limit (0). Optional
MaxSteps int64 `json:"maxSteps,omitempty"`
// ForceSendFields is a list of field names (e.g. "AppInitialActivity")
// to unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AppInitialActivity") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *AndroidRoboTest) MarshalJSON() ([]byte, error) {
type NoMethod AndroidRoboTest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AndroidTest: An Android mobile test specification.
type AndroidTest struct {
// AndroidAppInfo: Information about the application under test.
AndroidAppInfo *AndroidAppInfo `json:"androidAppInfo,omitempty"`
// AndroidInstrumentationTest: An Android instrumentation test.
AndroidInstrumentationTest *AndroidInstrumentationTest `json:"androidInstrumentationTest,omitempty"`
// AndroidRoboTest: An Android robo test.
AndroidRoboTest *AndroidRoboTest `json:"androidRoboTest,omitempty"`
// AndroidTestLoop: An Android test loop.
AndroidTestLoop *AndroidTestLoop `json:"androidTestLoop,omitempty"`
// TestTimeout: Max time a test is allowed to run before it is
// automatically cancelled.
TestTimeout *Duration `json:"testTimeout,omitempty"`
// ForceSendFields is a list of field names (e.g. "AndroidAppInfo") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AndroidAppInfo") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *AndroidTest) MarshalJSON() ([]byte, error) {
type NoMethod AndroidTest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AndroidTestLoop: Test Loops are tests that can be launched by the app
// itself, determining when to run by listening for an intent.
type AndroidTestLoop struct {
}
// Any: `Any` contains an arbitrary serialized protocol buffer message
// along with a URL that describes the type of the serialized message.
// Protobuf library provides support to pack/unpack Any values in the
// form of utility functions or additional generated methods of the Any
// type. Example 1: Pack and unpack a message in C++. Foo foo = ...; Any
// any; any.PackFrom(foo); ... if (any.UnpackTo(&foo)) { ... } Example
// 2: Pack and unpack a message in Java. Foo foo = ...; Any any =
// Any.pack(foo); ... if (any.is(Foo.class)) { foo =
// any.unpack(Foo.class); } Example 3: Pack and unpack a message in
// Python. foo = Foo(...) any = Any() any.Pack(foo) ... if
// any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ... Example 4: Pack and
// unpack a message in Go foo := &pb.Foo{...} any, err :=
// ptypes.MarshalAny(foo) ... foo := &pb.Foo{} if err :=
// ptypes.UnmarshalAny(any, foo); err != nil { ... } The pack methods
// provided by protobuf library will by default use
// 'type.googleapis.com/full.type.name' as the type URL and the unpack
// methods only use the fully qualified type name after the last '/' in
// the type URL, for example "foo.bar.com/x/y.z" will yield type name
// "y.z". # JSON The JSON representation of an `Any` value uses the
// regular representation of the deserialized, embedded message, with an
// additional field `@type` which contains the type URL. Example:
// package google.profile; message Person { string first_name = 1;
// string last_name = 2; } { "@type":
// "type.googleapis.com/google.profile.Person", "firstName": ,
// "lastName": } If the embedded message type is well-known and has a
// custom JSON representation, that representation will be embedded
// adding a field `value` which holds the custom JSON in addition to the
// `@type` field. Example (for message google.protobuf.Duration): {
// "@type": "type.googleapis.com/google.protobuf.Duration", "value":
// "1.212s" }
type Any struct {
// TypeUrl: A URL/resource name that uniquely identifies the type of the
// serialized protocol buffer message. This string must contain at least
// one "/" character. The last segment of the URL's path must represent
// the fully qualified name of the type (as in
// `path/google.protobuf.Duration`). The name should be in a canonical
// form (e.g., leading "." is not accepted). In practice, teams usually
// precompile into the binary all types that they expect it to use in
// the context of Any. However, for URLs which use the scheme `http`,
// `https`, or no scheme, one can optionally set up a type server that
// maps type URLs to message definitions as follows: * If no scheme is
// provided, `https` is assumed. * An HTTP GET on the URL must yield a
// google.protobuf.Type value in binary format, or produce an error. *
// Applications are allowed to cache lookup results based on the URL, or
// have them precompiled into a binary to avoid any lookup. Therefore,
// binary compatibility needs to be preserved on changes to types. (Use
// versioned type names to manage breaking changes.) Note: this
// functionality is not 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) might be used with implementation specific semantics.
TypeUrl string `json:"typeUrl,omitempty"`
// Value: Must be a valid serialized protocol buffer of the above
// specified type.
Value string `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "TypeUrl") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "TypeUrl") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Any) MarshalJSON() ([]byte, error) {
type NoMethod Any
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
type AppStartTime struct {
// FullyDrawnTime: 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
// https://developer.android.com/topic/performance/launch-time.html#time-full
FullyDrawnTime *Duration `json:"fullyDrawnTime,omitempty"`
// InitialDisplayTime: 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
InitialDisplayTime *Duration `json:"initialDisplayTime,omitempty"`
// ForceSendFields is a list of field names (e.g. "FullyDrawnTime") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "FullyDrawnTime") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *AppStartTime) MarshalJSON() ([]byte, error) {
type NoMethod AppStartTime
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AssetIssue: There was an issue with the assets in this test.
type AssetIssue struct {
}
// AvailableDeepLinks: A suggestion to use deep links for a Robo run.
type AvailableDeepLinks struct {
}
// BasicPerfSampleSeries: Encapsulates the metadata for basic sample
// series represented by a line chart
type BasicPerfSampleSeries struct {
// Possible values:
// "perfMetricTypeUnspecified"
// "memory"
// "cpu"
// "network"
// "graphics"
PerfMetricType string `json:"perfMetricType,omitempty"`
// Possible values:
// "perfUnitUnspecified"
// "kibibyte"
// "percent"
// "bytesPerSecond"
// "framesPerSecond"
// "byte"
PerfUnit string `json:"perfUnit,omitempty"`
// Possible values:
// "sampleSeriesTypeUnspecified"
// "memoryRssPrivate" - Memory sample series
// "memoryRssShared"
// "memoryRssTotal"
// "memoryTotal"
// "cpuUser" - CPU sample series
// "cpuKernel"
// "cpuTotal"
// "ntBytesTransferred" - Network sample series
// "ntBytesReceived"
// "networkSent"
// "networkReceived"
// "graphicsFrameRate" - Graphics sample series
SampleSeriesLabel string `json:"sampleSeriesLabel,omitempty"`
// ForceSendFields is a list of field names (e.g. "PerfMetricType") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "PerfMetricType") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *BasicPerfSampleSeries) MarshalJSON() ([]byte, error) {
type NoMethod BasicPerfSampleSeries
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchCreatePerfSamplesRequest: The request must provide up to a
// maximum of 5000 samples to be created; a larger sample size will
// cause an INVALID_ARGUMENT error
type BatchCreatePerfSamplesRequest struct {
// PerfSamples: The set of PerfSamples to create should not include
// existing timestamps
PerfSamples []*PerfSample `json:"perfSamples,omitempty"`
// ForceSendFields is a list of field names (e.g. "PerfSamples") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "PerfSamples") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchCreatePerfSamplesRequest) MarshalJSON() ([]byte, error) {
type NoMethod BatchCreatePerfSamplesRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
type BatchCreatePerfSamplesResponse struct {
PerfSamples []*PerfSample `json:"perfSamples,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "PerfSamples") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "PerfSamples") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchCreatePerfSamplesResponse) MarshalJSON() ([]byte, error) {
type NoMethod BatchCreatePerfSamplesResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BlankScreen: A warning that Robo encountered a screen that was mostly
// blank; this may indicate a problem with the app.
type BlankScreen struct {
// ScreenId: The screen id of the element
ScreenId string `json:"screenId,omitempty"`
// ForceSendFields is a list of field names (e.g. "ScreenId") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ScreenId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BlankScreen) MarshalJSON() ([]byte, error) {
type NoMethod BlankScreen
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
type CPUInfo struct {
// CpuProcessor: description of the device processor ie '1.8 GHz hexa
// core 64-bit ARMv8-A'
CpuProcessor string `json:"cpuProcessor,omitempty"`
// CpuSpeedInGhz: the CPU clock speed in GHz
CpuSpeedInGhz float64 `json:"cpuSpeedInGhz,omitempty"`
// NumberOfCores: the number of CPU cores
NumberOfCores int64 `json:"numberOfCores,omitempty"`
// ForceSendFields is a list of field names (e.g. "CpuProcessor") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "CpuProcessor") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *CPUInfo) MarshalJSON() ([]byte, error) {
type NoMethod CPUInfo
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *CPUInfo) UnmarshalJSON(data []byte) error {
type NoMethod CPUInfo
var s1 struct {
CpuSpeedInGhz gensupport.JSONFloat64 `json:"cpuSpeedInGhz"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.CpuSpeedInGhz = float64(s1.CpuSpeedInGhz)
return nil
}
// CrashDialogError: Crash dialog was detected during the test execution
type CrashDialogError struct {
// CrashPackage: The name of the package that caused the dialog.
CrashPackage string `json:"crashPackage,omitempty"`
// ForceSendFields is a list of field names (e.g. "CrashPackage") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "CrashPackage") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *CrashDialogError) MarshalJSON() ([]byte, error) {
type NoMethod CrashDialogError
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DetectedAppSplashScreen: A notification that Robo detected a splash
// screen provided by app (vs. Android OS splash screen).
type DetectedAppSplashScreen struct {
}
// DeviceOutOfMemory: A warning that device ran out of memory
type DeviceOutOfMemory struct {
}
// Duration: A Duration represents a signed, fixed-length span of time
// represented as a count of seconds and fractions of seconds at
// nanosecond resolution. It is independent of any calendar and concepts
// like "day" or "month". It is related to Timestamp in that the
// difference between two Timestamp values is a Duration and it can be
// added or subtracted from a Timestamp. Range is approximately +-10,000
// years.
type Duration struct {
// Nanos: Signed fractions of a second at nanosecond resolution of the
// span of time. Durations less than one second are represented with a 0
// `seconds` field and a positive or negative `nanos` 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 inclusive.
Nanos int64 `json:"nanos,omitempty"`
// Seconds: 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
// days/year * 10000 years
Seconds int64 `json:"seconds,omitempty,string"`
// ForceSendFields is a list of field names (e.g. "Nanos") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Nanos") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Duration) MarshalJSON() ([]byte, error) {
type NoMethod Duration
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// EncounteredLoginScreen: Additional details about encountered login
// screens.
type EncounteredLoginScreen struct {
// DistinctScreens: Number of encountered distinct login screens.
DistinctScreens int64 `json:"distinctScreens,omitempty"`
// ScreenIds: Subset of login screens.
ScreenIds []string `json:"screenIds,omitempty"`
// ForceSendFields is a list of field names (e.g. "DistinctScreens") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DistinctScreens") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *EncounteredLoginScreen) MarshalJSON() ([]byte, error) {
type NoMethod EncounteredLoginScreen
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// EncounteredNonAndroidUiWidgetScreen: Additional details about
// encountered screens with elements that are not Android UI widgets.
type EncounteredNonAndroidUiWidgetScreen struct {
// DistinctScreens: Number of encountered distinct screens with non
// Android UI widgets.
DistinctScreens int64 `json:"distinctScreens,omitempty"`
// ScreenIds: Subset of screens which contain non Android UI widgets.
ScreenIds []string `json:"screenIds,omitempty"`
// ForceSendFields is a list of field names (e.g. "DistinctScreens") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DistinctScreens") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *EncounteredNonAndroidUiWidgetScreen) MarshalJSON() ([]byte, error) {
type NoMethod EncounteredNonAndroidUiWidgetScreen
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Environment: An Environment represents the set of test runs (Steps)
// from the parent Execution that are configured with the same set of
// dimensions (Model, Version, Locale, and Orientation). Multiple such
// runs occur particularly because of features like sharding (splitting
// up a test suite to run in parallel across devices) and reruns
// (running a test multiple times to check for different outcomes).
type Environment struct {
// CompletionTime: Output only. The time when the Environment status was
// set to complete. This value will be set automatically when state
// transitions to COMPLETE.
CompletionTime *Timestamp `json:"completionTime,omitempty"`
// CreationTime: Output only. The time when the Environment was created.
CreationTime *Timestamp `json:"creationTime,omitempty"`
// DimensionValue: Dimension values describing the environment.
// Dimension values always consist of "Model", "Version", "Locale", and
// "Orientation". - In response: always set - In create request: always
// set - In update request: never set
DimensionValue []*EnvironmentDimensionValueEntry `json:"dimensionValue,omitempty"`
// DisplayName: A short human-readable name to display in the UI.
// Maximum of 100 characters. For example: Nexus 5, API 27.
DisplayName string `json:"displayName,omitempty"`
// EnvironmentId: Output only. An Environment id.
EnvironmentId string `json:"environmentId,omitempty"`
// EnvironmentResult: Merged result of the environment.
EnvironmentResult *MergedResult `json:"environmentResult,omitempty"`
// ExecutionId: Output only. An Execution id.
ExecutionId string `json:"executionId,omitempty"`
// HistoryId: Output only. A History id.
HistoryId string `json:"historyId,omitempty"`
// ProjectId: Output only. A Project id.
ProjectId string `json:"projectId,omitempty"`
// ResultsStorage: The location where output files are stored in the