-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathfirebaseappdistribution-gen.go
3064 lines (2819 loc) · 121 KB
/
firebaseappdistribution-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 firebaseappdistribution provides access to the Firebase App Distribution API.
//
// For product documentation, see: https://firebase.google.com/products/app-distribution
//
// # 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/firebaseappdistribution/v1alpha"
// ...
// ctx := context.Background()
// firebaseappdistributionService, err := firebaseappdistribution.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]:
//
// firebaseappdistributionService, err := firebaseappdistribution.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, ...)
// firebaseappdistributionService, err := firebaseappdistribution.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See [google.golang.org/api/option.ClientOption] for details on options.
package firebaseappdistribution // import "google.golang.org/api/firebaseappdistribution/v1alpha"
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 = "firebaseappdistribution:v1alpha"
const apiName = "firebaseappdistribution"
const apiVersion = "v1alpha"
const basePath = "https://firebaseappdistribution.googleapis.com/"
const basePathTemplate = "https://firebaseappdistribution.UNIVERSE_DOMAIN/"
const mtlsBasePath = "https://firebaseappdistribution.mtls.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.EnableNewAuthLibrary())
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.Apps = NewAppsService(s)
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
Apps *AppsService
Projects *ProjectsService
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewAppsService(s *Service) *AppsService {
rs := &AppsService{s: s}
rs.ReleaseByHash = NewAppsReleaseByHashService(s)
rs.Releases = NewAppsReleasesService(s)
rs.Testers = NewAppsTestersService(s)
rs.UploadStatus = NewAppsUploadStatusService(s)
return rs
}
type AppsService struct {
s *Service
ReleaseByHash *AppsReleaseByHashService
Releases *AppsReleasesService
Testers *AppsTestersService
UploadStatus *AppsUploadStatusService
}
func NewAppsReleaseByHashService(s *Service) *AppsReleaseByHashService {
rs := &AppsReleaseByHashService{s: s}
return rs
}
type AppsReleaseByHashService struct {
s *Service
}
func NewAppsReleasesService(s *Service) *AppsReleasesService {
rs := &AppsReleasesService{s: s}
rs.Notes = NewAppsReleasesNotesService(s)
return rs
}
type AppsReleasesService struct {
s *Service
Notes *AppsReleasesNotesService
}
func NewAppsReleasesNotesService(s *Service) *AppsReleasesNotesService {
rs := &AppsReleasesNotesService{s: s}
return rs
}
type AppsReleasesNotesService struct {
s *Service
}
func NewAppsTestersService(s *Service) *AppsTestersService {
rs := &AppsTestersService{s: s}
return rs
}
type AppsTestersService struct {
s *Service
}
func NewAppsUploadStatusService(s *Service) *AppsUploadStatusService {
rs := &AppsUploadStatusService{s: s}
return rs
}
type AppsUploadStatusService struct {
s *Service
}
func NewProjectsService(s *Service) *ProjectsService {
rs := &ProjectsService{s: s}
rs.Apps = NewProjectsAppsService(s)
rs.Testers = NewProjectsTestersService(s)
return rs
}
type ProjectsService struct {
s *Service
Apps *ProjectsAppsService
Testers *ProjectsTestersService
}
func NewProjectsAppsService(s *Service) *ProjectsAppsService {
rs := &ProjectsAppsService{s: s}
rs.Releases = NewProjectsAppsReleasesService(s)
return rs
}
type ProjectsAppsService struct {
s *Service
Releases *ProjectsAppsReleasesService
}
func NewProjectsAppsReleasesService(s *Service) *ProjectsAppsReleasesService {
rs := &ProjectsAppsReleasesService{s: s}
rs.Tests = NewProjectsAppsReleasesTestsService(s)
return rs
}
type ProjectsAppsReleasesService struct {
s *Service
Tests *ProjectsAppsReleasesTestsService
}
func NewProjectsAppsReleasesTestsService(s *Service) *ProjectsAppsReleasesTestsService {
rs := &ProjectsAppsReleasesTestsService{s: s}
return rs
}
type ProjectsAppsReleasesTestsService struct {
s *Service
}
func NewProjectsTestersService(s *Service) *ProjectsTestersService {
rs := &ProjectsTestersService{s: s}
return rs
}
type ProjectsTestersService struct {
s *Service
}
// AndroidxCrawlerOutputPoint: Point for describing bounding boxes tap
// locations Top left is 0,0
type AndroidxCrawlerOutputPoint struct {
XCoordinate int64 `json:"xCoordinate,omitempty"`
YCoordinate int64 `json:"yCoordinate,omitempty"`
// ForceSendFields is a list of field names (e.g. "XCoordinate") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "XCoordinate") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s AndroidxCrawlerOutputPoint) MarshalJSON() ([]byte, error) {
type NoMethod AndroidxCrawlerOutputPoint
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1Release: A release of a Firebase app.
type GoogleFirebaseAppdistroV1Release struct {
// BinaryDownloadUri: Output only. A signed link (which expires in one hour) to
// directly download the app binary (IPA/APK/AAB) file.
BinaryDownloadUri string `json:"binaryDownloadUri,omitempty"`
// BuildVersion: Output only. Build version of the release. For an Android
// release, the build version is the `versionCode`. For an iOS release, the
// build version is the `CFBundleVersion`.
BuildVersion string `json:"buildVersion,omitempty"`
// CreateTime: Output only. The time the release was created.
CreateTime string `json:"createTime,omitempty"`
// DisplayVersion: Output only. Display version of the release. For an Android
// release, the display version is the `versionName`. For an iOS release, the
// display version is the `CFBundleShortVersionString`.
DisplayVersion string `json:"displayVersion,omitempty"`
// FirebaseConsoleUri: Output only. A link to the Firebase console displaying a
// single release.
FirebaseConsoleUri string `json:"firebaseConsoleUri,omitempty"`
// Name: The name of the release resource. Format:
// `projects/{project_number}/apps/{app_id}/releases/{release_id}`
Name string `json:"name,omitempty"`
// ReleaseNotes: Notes of the release.
ReleaseNotes *GoogleFirebaseAppdistroV1ReleaseNotes `json:"releaseNotes,omitempty"`
// TestingUri: Output only. A link to the release in the tester web clip or
// Android app that lets testers (which were granted access to the app) view
// release notes and install the app onto their devices.
TestingUri string `json:"testingUri,omitempty"`
// ForceSendFields is a list of field names (e.g. "BinaryDownloadUri") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BinaryDownloadUri") to include in
// API requests with the JSON null value. By default, fields with empty values
// are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1Release) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1Release
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1ReleaseNotes: Notes that belong to a release.
type GoogleFirebaseAppdistroV1ReleaseNotes struct {
// Text: The text of the release notes.
Text string `json:"text,omitempty"`
// ForceSendFields is a list of field names (e.g. "Text") to unconditionally
// include in API requests. By default, fields with empty or default values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Text") to include in API requests
// with the JSON null value. By default, fields with empty values are omitted
// from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1ReleaseNotes) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1ReleaseNotes
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1UploadReleaseMetadata: Operation metadata for
// `UploadRelease`.
type GoogleFirebaseAppdistroV1UploadReleaseMetadata struct {
}
// GoogleFirebaseAppdistroV1UploadReleaseResponse: Response message for
// `UploadRelease`.
type GoogleFirebaseAppdistroV1UploadReleaseResponse struct {
// Release: Release associated with the uploaded binary.
Release *GoogleFirebaseAppdistroV1Release `json:"release,omitempty"`
// Result: Result of upload release.
//
// Possible values:
// "UPLOAD_RELEASE_RESULT_UNSPECIFIED" - Upload binary result unspecified
// "RELEASE_CREATED" - Upload binary resulted in a new release
// "RELEASE_UPDATED" - Upload binary updated an existing release
// "RELEASE_UNMODIFIED" - Upload binary resulted in a no-op. A release with
// the exact same binary already exists.
Result string `json:"result,omitempty"`
// ForceSendFields is a list of field names (e.g. "Release") to unconditionally
// include in API requests. By default, fields with empty or default values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Release") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1UploadReleaseResponse) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1UploadReleaseResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaAabCertificate: App bundle test certificate
type GoogleFirebaseAppdistroV1alphaAabCertificate struct {
// CertificateHashMd5: MD5 hash of the certificate used to resign the AAB
CertificateHashMd5 string `json:"certificateHashMd5,omitempty"`
// CertificateHashSha1: SHA1 hash of the certificate used to resign the AAB
CertificateHashSha1 string `json:"certificateHashSha1,omitempty"`
// CertificateHashSha256: SHA256 hash of the certificate used to resign the AAB
CertificateHashSha256 string `json:"certificateHashSha256,omitempty"`
// ForceSendFields is a list of field names (e.g. "CertificateHashMd5") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "CertificateHashMd5") to include
// in API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaAabCertificate) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaAabCertificate
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaAiInstructions: Instructions for AI driven
// test
type GoogleFirebaseAppdistroV1alphaAiInstructions struct {
// AppDescription: Optional. Describes the app to give the AI some context
AppDescription string `json:"appDescription,omitempty"`
// Steps: Required. Steps to be accomplished by the AI
Steps []*GoogleFirebaseAppdistroV1alphaAiStep `json:"steps,omitempty"`
// ForceSendFields is a list of field names (e.g. "AppDescription") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AppDescription") to include in
// API requests with the JSON null value. By default, fields with empty values
// are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaAiInstructions) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaAiInstructions
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaAiStep: A step to be accomplished by the AI
type GoogleFirebaseAppdistroV1alphaAiStep struct {
// Assertion: An assertion to be checked by the AI
Assertion string `json:"assertion,omitempty"`
// Goal: A goal to be accomplished by the AI
Goal string `json:"goal,omitempty"`
// ForceSendFields is a list of field names (e.g. "Assertion") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Assertion") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaAiStep) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaAiStep
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaAiStepResult: Captures the results of an
// AiStep
type GoogleFirebaseAppdistroV1alphaAiStepResult struct {
// AssertionDetails: Output only. Details for an assertion step.
AssertionDetails *GoogleFirebaseAppdistroV1alphaAssertionDetails `json:"assertionDetails,omitempty"`
// GoalDetails: Output only. Details for a goal step.
GoalDetails *GoogleFirebaseAppdistroV1alphaGoalDetails `json:"goalDetails,omitempty"`
// State: Output only. The current state of the step
//
// Possible values:
// "STEP_STATE_UNSPECIFIED" - Step state unspecified
// "IN_PROGRESS" - The step is in progress
// "PASSED" - The step has completed successfully
// "FAILED" - The step has failed
State string `json:"state,omitempty"`
// Step: Required. The step performed by the AI
Step *GoogleFirebaseAppdistroV1alphaAiStep `json:"step,omitempty"`
// ForceSendFields is a list of field names (e.g. "AssertionDetails") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AssertionDetails") to include in
// API requests with the JSON null value. By default, fields with empty values
// are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaAiStepResult) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaAiStepResult
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type GoogleFirebaseAppdistroV1alphaApp struct {
// AabCertificate: App bundle test certificate generated for the app.
AabCertificate *GoogleFirebaseAppdistroV1alphaAabCertificate `json:"aabCertificate,omitempty"`
// AabState: App bundle state. Only valid for android apps. The app_view field
// in the request must be set to FULL in order for this to be populated.
//
// Possible values:
// "AAB_STATE_UNSPECIFIED" - Aab state unspecified
// "ACTIVE" - App can receive app bundle uploads
// "PLAY_ACCOUNT_NOT_LINKED" - Firebase project is not linked to a Play
// developer account
// "NO_APP_WITH_GIVEN_BUNDLE_ID_IN_PLAY_ACCOUNT" - There is no app in linked
// Play developer account with the same bundle id
// "APP_NOT_PUBLISHED" - The app in Play developer account is not in a
// published state
// "AAB_STATE_UNAVAILABLE" - Play App status is unavailable
// "PLAY_IAS_TERMS_NOT_ACCEPTED" - Play IAS terms not accepted
AabState string `json:"aabState,omitempty"`
// AppId: Firebase gmp app id
AppId string `json:"appId,omitempty"`
// BundleId: Bundle identifier
BundleId string `json:"bundleId,omitempty"`
// ContactEmail: Developer contact email for testers to reach out to about
// privacy or support issues.
ContactEmail string `json:"contactEmail,omitempty"`
// Platform: iOS or Android
Platform string `json:"platform,omitempty"`
// ProjectNumber: Project number of the Firebase project, for example
// 300830567303.
ProjectNumber string `json:"projectNumber,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "AabCertificate") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AabCertificate") to include in
// API requests with the JSON null value. By default, fields with empty values
// are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaApp) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaApp
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaAppCrash: An app crash that occurred during an
// automated test.
type GoogleFirebaseAppdistroV1alphaAppCrash struct {
// Message: Output only. The message associated with the crash.
Message string `json:"message,omitempty"`
// StackTrace: Output only. The raw stack trace.
StackTrace string `json:"stackTrace,omitempty"`
// ForceSendFields is a list of field names (e.g. "Message") to unconditionally
// include in API requests. By default, fields with empty or default values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Message") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaAppCrash) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaAppCrash
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaAssertionDetails: Details for an assertion
// step.
type GoogleFirebaseAppdistroV1alphaAssertionDetails struct {
// Explanation: Output only. An explanation justifying the assertion result.
Explanation string `json:"explanation,omitempty"`
// Result: Output only. The result of the assertion.
Result bool `json:"result,omitempty"`
// Screenshot: Output only. The screenshot used in the context of this
// assertion.
Screenshot *GoogleFirebaseAppdistroV1alphaScreenshot `json:"screenshot,omitempty"`
// ForceSendFields is a list of field names (e.g. "Explanation") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Explanation") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaAssertionDetails) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaAssertionDetails
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type GoogleFirebaseAppdistroV1alphaCreateReleaseNotesRequest struct {
// ReleaseNotes: The actual release notes body from the user
ReleaseNotes *GoogleFirebaseAppdistroV1alphaReleaseNotes `json:"releaseNotes,omitempty"`
// ForceSendFields is a list of field names (e.g. "ReleaseNotes") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ReleaseNotes") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaCreateReleaseNotesRequest) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaCreateReleaseNotesRequest
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type GoogleFirebaseAppdistroV1alphaCreateReleaseNotesResponse struct {
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
}
// GoogleFirebaseAppdistroV1alphaDeviceAction: A high level action taken by the
// AI on the device, potentially involving multiple taps, text entries, waits,
// etc.
type GoogleFirebaseAppdistroV1alphaDeviceAction struct {
// Description: Output only. A short description of the high level action taken
// by the AI agent.
Description string `json:"description,omitempty"`
// DeviceInteractions: Output only. The interactions made with the device as
// part of this higher level action taken by the agent, such as taps, text
// entries, waits, etc.
DeviceInteractions []*GoogleFirebaseAppdistroV1alphaDeviceInteraction `json:"deviceInteractions,omitempty"`
// ForceSendFields is a list of field names (e.g. "Description") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Description") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaDeviceAction) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaDeviceAction
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaDeviceExecution: The results of running an
// automated test on a particular device.
type GoogleFirebaseAppdistroV1alphaDeviceExecution struct {
// AiStepResults: Output only. Results of the AI steps if passed in
AiStepResults []*GoogleFirebaseAppdistroV1alphaAiStepResult `json:"aiStepResults,omitempty"`
// AppCrash: Output only. An app crash, if any occurred during the test.
AppCrash *GoogleFirebaseAppdistroV1alphaAppCrash `json:"appCrash,omitempty"`
// CrawlGraphUri: Output only. A URI to an image of the Robo crawl graph.
CrawlGraphUri string `json:"crawlGraphUri,omitempty"`
// Device: Required. The device that the test was run on.
Device *GoogleFirebaseAppdistroV1alphaTestDevice `json:"device,omitempty"`
// FailedReason: Output only. The reason why the test failed.
//
// Possible values:
// "FAILED_REASON_UNSPECIFIED" - Reason unspecified.
// "CRASHED" - The app crashed during the test.
// "NOT_INSTALLED" - 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.
// "UNABLE_TO_CRAWL" - If the app could not be crawled (possibly because the
// app did not start).
// "DEVICE_OUT_OF_MEMORY" - If the device ran out of memory during the test.
// "FAILED_AI_STEP" - At least one AI step failed.
FailedReason string `json:"failedReason,omitempty"`
// InconclusiveReason: Output only. The reason why the test was inconclusive.
//
// Possible values:
// "INCONCLUSIVE_REASON_UNSPECIFIED" - Reason unspecified.
// "QUOTA_EXCEEDED" - Not enough quota remained to run the test.
// "INFRASTRUCTURE_FAILURE" - The outcome of the test could not be determined
// because of a failure in the test running infrastructure.
// "SERVICE_NOT_ACTIVATED" - A required cloud service api is not activated
// (Google Cloud Testing API or Cloud Tool Results API).
// "NO_SIGNATURE" - The app was not signed.
// "NO_LAUNCHER_ACTIVITY" - A main launcher activity could not be found.
// "FORBIDDEN_PERMISSIONS" - The app declares one or more permissions that
// are not allowed.
// "DEVICE_ADMIN_RECEIVER" - Device administrator applications are not
// allowed.
// "NO_CODE_APK" - APK contains no code. See also
// https://developer.android.com/guide/topics/manifest/application-element.html#code
// "INVALID_APK_PREVIEW_SDK" - APK is built for a preview SDK which is
// unsupported.
InconclusiveReason string `json:"inconclusiveReason,omitempty"`
// ResultsStoragePath: Output only. The path to a directory in Cloud Storage
// that will eventually contain the results for this execution. For example,
// gs://bucket/Nexus5-18-en-portrait.
ResultsStoragePath string `json:"resultsStoragePath,omitempty"`
// RoboStats: Output only. The statistics collected during the Robo test.
RoboStats *GoogleFirebaseAppdistroV1alphaRoboStats `json:"roboStats,omitempty"`
// ScreenshotUris: Output only. A list of screenshot image URIs taken from the
// Robo crawl. The file names are numbered by the order in which they were
// taken.
ScreenshotUris []string `json:"screenshotUris,omitempty"`
// State: Output only. The state of the test.
//
// Possible values:
// "TEST_STATE_UNSPECIFIED" - Test state unspecified.
// "IN_PROGRESS" - The test is in progress.
// "PASSED" - The test has passed.
// "FAILED" - The test has failed.
// "INCONCLUSIVE" - The test was inconclusive.
State string `json:"state,omitempty"`
// VideoUri: Output only. A URI to a video of the test run.
VideoUri string `json:"videoUri,omitempty"`
// ForceSendFields is a list of field names (e.g. "AiStepResults") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AiStepResults") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaDeviceExecution) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaDeviceExecution
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaDeviceInteraction: An interaction with the
// device, such as a tap, text entry, wait, etc.
type GoogleFirebaseAppdistroV1alphaDeviceInteraction struct {
// Screenshot: Output only. The screenshot used in the context of this action.
// The screen may have changed before the action was actually taken.
Screenshot *GoogleFirebaseAppdistroV1alphaScreenshot `json:"screenshot,omitempty"`
// Swipe: Output only. A swipe action.
Swipe *GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe `json:"swipe,omitempty"`
// Tap: Output only. A tap action.
Tap *AndroidxCrawlerOutputPoint `json:"tap,omitempty"`
// TextInput: Output only. Text entered for a text entry action.
TextInput string `json:"textInput,omitempty"`
// Wait: Output only. A wait action.
Wait *GoogleFirebaseAppdistroV1alphaDeviceInteractionWait `json:"wait,omitempty"`
// ForceSendFields is a list of field names (e.g. "Screenshot") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Screenshot") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaDeviceInteraction) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaDeviceInteraction
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe: A swipe action.
type GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe struct {
// End: Output only. The end point of the swipe.
End *AndroidxCrawlerOutputPoint `json:"end,omitempty"`
// Start: Output only. The start point of the swipe.
Start *AndroidxCrawlerOutputPoint `json:"start,omitempty"`
// ForceSendFields is a list of field names (e.g. "End") to unconditionally
// include in API requests. By default, fields with empty or default values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "End") to include in API requests
// with the JSON null value. By default, fields with empty values are omitted
// from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaDeviceInteractionWait: A wait action.
type GoogleFirebaseAppdistroV1alphaDeviceInteractionWait struct {
// Duration: Output only. The duration of the wait.
Duration string `json:"duration,omitempty"`
// ForceSendFields is a list of field names (e.g. "Duration") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Duration") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaDeviceInteractionWait) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaDeviceInteractionWait
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type GoogleFirebaseAppdistroV1alphaEnableAccessOnReleaseRequest struct {
// BuildVersion: Optional. Ignored. Used to be build version of the app release
// if an instance identifier was provided for the release_id.
BuildVersion string `json:"buildVersion,omitempty"`
// DisplayVersion: Optional. Ignored. Used to be display version of the app
// release if an instance identifier was provided for the release_id.
DisplayVersion string `json:"displayVersion,omitempty"`
// Emails: Optional. An email address which should get access to this release,
// for example rebeccahe@google.com
Emails []string `json:"emails,omitempty"`
// GroupIds: Optional. A repeated list of group aliases to enable access to a
// release for Note: This field is misnamed, but can't be changed because we
// need to maintain compatibility with old build tools
GroupIds []string `json:"groupIds,omitempty"`
// ForceSendFields is a list of field names (e.g. "BuildVersion") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BuildVersion") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaEnableAccessOnReleaseRequest) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaEnableAccessOnReleaseRequest
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type GoogleFirebaseAppdistroV1alphaEnableAccessOnReleaseResponse struct {
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
}
// GoogleFirebaseAppdistroV1alphaGetReleaseByUploadHashResponse: Response
// object to get the release given a upload hash
type GoogleFirebaseAppdistroV1alphaGetReleaseByUploadHashResponse struct {
// Release: Release object
Release *GoogleFirebaseAppdistroV1alphaRelease `json:"release,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Release") to unconditionally
// include in API requests. By default, fields with empty or default values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Release") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaGetReleaseByUploadHashResponse) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaGetReleaseByUploadHashResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse: Response containing
// the UDIDs of tester iOS devices in a project
type GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse struct {
// TesterUdids: The UDIDs of tester iOS devices in a project
TesterUdids []*GoogleFirebaseAppdistroV1alphaTesterUdid `json:"testerUdids,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "TesterUdids") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "TesterUdids") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type GoogleFirebaseAppdistroV1alphaGetUploadStatusResponse struct {
// ErrorCode: The error code associated with (only set on "FAILURE")
//
// Possible values:
// "ERROR_UNSPECIFIED"
// "INVALID_ZIP"
// "MISSING_PLIST"
// "MISSING_PROFILE"
// "VERSION_TOO_LONG"
// "MISSING_UUIDS"
// "MISSING_RESOURCES"
// "MISSING_MANIFEST"
// "IOS_METADATA_ERROR"
// "ANDROID_METADATA_ERROR"
// "UNSUPPORTED_PLATFORM_TYPE"
// "BUNDLE_ID_MISMATCH"
// "APK_NOT_ZIP_ALIGNED"
// "INVALID_CERTIFICATE"
// "APK_TOO_LARGE"
// "AAB_NOT_PUBLISHED"
// "INVALID_PLIST_DEVICE_FAMILIES"
// "AAB_TOS_NOT_ACCEPTED"
// "APP_NAME_TOO_LONG"
// "AAB_DEVELOPER_ACCOUNT_NOT_LINKED"
// "AAB_NO_APP_WITH_GIVEN_PACKAGE_NAME_IN_ACCOUNT"
// "AAB_UPLOAD_ERROR"
ErrorCode string `json:"errorCode,omitempty"`
// Message: Any additional context for the given upload status (e.g. error
// message) Meant to be displayed to the client
Message string `json:"message,omitempty"`
// Release: The release that was created from the upload (only set on
// "SUCCESS")
Release *GoogleFirebaseAppdistroV1alphaRelease `json:"release,omitempty"`
// Status: The status of the upload
//
// Possible values:
// "STATUS_UNSPECIFIED"
// "IN_PROGRESS"
// "ALREADY_UPLOADED"
// "SUCCESS"
// "ERROR"
Status string `json:"status,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "ErrorCode") to
// unconditionally include in API requests. By default, fields with empty or
// default values are omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
// details.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ErrorCode") to include in API
// requests with the JSON null value. By default, fields with empty values are
// omitted from API requests. See
// https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.
NullFields []string `json:"-"`
}
func (s GoogleFirebaseAppdistroV1alphaGetUploadStatusResponse) MarshalJSON() ([]byte, error) {
type NoMethod GoogleFirebaseAppdistroV1alphaGetUploadStatusResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleFirebaseAppdistroV1alphaGoalAction: An action taken by the AI agent
// while attempting to accomplish a goal.
type GoogleFirebaseAppdistroV1alphaGoalAction struct {
// DeviceAction: Output only. A high level action taken by the AI on the
// device.
DeviceAction *GoogleFirebaseAppdistroV1alphaDeviceAction `json:"deviceAction,omitempty"`