-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathworkloadmanager-gen.go
4528 lines (4181 loc) · 180 KB
/
workloadmanager-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 workloadmanager provides access to the Workload Manager API.
//
// For product documentation, see: https://cloud.google.com/workload-manager/docs
//
// # 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/workloadmanager/v1"
// ...
// ctx := context.Background()
// workloadmanagerService, err := workloadmanager.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]:
//
// workloadmanagerService, err := workloadmanager.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, ...)
// workloadmanagerService, err := workloadmanager.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See [google.golang.org/api/option.ClientOption] for details on options.
package workloadmanager // import "google.golang.org/api/workloadmanager/v1"
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 = "workloadmanager:v1"
const apiName = "workloadmanager"
const apiVersion = "v1"
const basePath = "https://workloadmanager.googleapis.com/"
const basePathTemplate = "https://workloadmanager.UNIVERSE_DOMAIN/"
const mtlsBasePath = "https://workloadmanager.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.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.Locations = NewProjectsLocationsService(s)
return rs
}
type ProjectsService struct {
s *Service
Locations *ProjectsLocationsService
}
func NewProjectsLocationsService(s *Service) *ProjectsLocationsService {
rs := &ProjectsLocationsService{s: s}
rs.Evaluations = NewProjectsLocationsEvaluationsService(s)
rs.Insights = NewProjectsLocationsInsightsService(s)
rs.Operations = NewProjectsLocationsOperationsService(s)
rs.Rules = NewProjectsLocationsRulesService(s)
return rs
}
type ProjectsLocationsService struct {
s *Service
Evaluations *ProjectsLocationsEvaluationsService
Insights *ProjectsLocationsInsightsService
Operations *ProjectsLocationsOperationsService
Rules *ProjectsLocationsRulesService
}
func NewProjectsLocationsEvaluationsService(s *Service) *ProjectsLocationsEvaluationsService {
rs := &ProjectsLocationsEvaluationsService{s: s}
rs.Executions = NewProjectsLocationsEvaluationsExecutionsService(s)
return rs
}
type ProjectsLocationsEvaluationsService struct {
s *Service
Executions *ProjectsLocationsEvaluationsExecutionsService
}
func NewProjectsLocationsEvaluationsExecutionsService(s *Service) *ProjectsLocationsEvaluationsExecutionsService {
rs := &ProjectsLocationsEvaluationsExecutionsService{s: s}
rs.Results = NewProjectsLocationsEvaluationsExecutionsResultsService(s)
rs.ScannedResources = NewProjectsLocationsEvaluationsExecutionsScannedResourcesService(s)
return rs
}
type ProjectsLocationsEvaluationsExecutionsService struct {
s *Service
Results *ProjectsLocationsEvaluationsExecutionsResultsService
ScannedResources *ProjectsLocationsEvaluationsExecutionsScannedResourcesService
}
func NewProjectsLocationsEvaluationsExecutionsResultsService(s *Service) *ProjectsLocationsEvaluationsExecutionsResultsService {
rs := &ProjectsLocationsEvaluationsExecutionsResultsService{s: s}
return rs
}
type ProjectsLocationsEvaluationsExecutionsResultsService struct {
s *Service
}
func NewProjectsLocationsEvaluationsExecutionsScannedResourcesService(s *Service) *ProjectsLocationsEvaluationsExecutionsScannedResourcesService {
rs := &ProjectsLocationsEvaluationsExecutionsScannedResourcesService{s: s}
return rs
}
type ProjectsLocationsEvaluationsExecutionsScannedResourcesService struct {
s *Service
}
func NewProjectsLocationsInsightsService(s *Service) *ProjectsLocationsInsightsService {
rs := &ProjectsLocationsInsightsService{s: s}
return rs
}
type ProjectsLocationsInsightsService struct {
s *Service
}
func NewProjectsLocationsOperationsService(s *Service) *ProjectsLocationsOperationsService {
rs := &ProjectsLocationsOperationsService{s: s}
return rs
}
type ProjectsLocationsOperationsService struct {
s *Service
}
func NewProjectsLocationsRulesService(s *Service) *ProjectsLocationsRulesService {
rs := &ProjectsLocationsRulesService{s: s}
return rs
}
type ProjectsLocationsRulesService struct {
s *Service
}
// AgentCommand: * An AgentCommand specifies a one-time executable program for
// the agent to run.
type AgentCommand struct {
// Command: command is the name of the agent one-time executable that will be
// invoked.
Command string `json:"command,omitempty"`
// Parameters: parameters is a map of key/value pairs that can be used to
// specify additional one-time executable settings.
Parameters map[string]string `json:"parameters,omitempty"`
// ForceSendFields is a list of field names (e.g. "Command") 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. "Command") 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 AgentCommand) MarshalJSON() ([]byte, error) {
type NoMethod AgentCommand
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// AssetLocation: Provides the mapping of a cloud asset to a direct physical
// location or to a proxy that defines the location on its behalf.
type AssetLocation struct {
// CcfeRmsPath: Spanner path of the CCFE RMS database. It is only applicable
// for CCFE tenants that use CCFE RMS for storing resource metadata.
CcfeRmsPath string `json:"ccfeRmsPath,omitempty"`
// Expected: Defines the customer expectation around ZI/ZS for this asset and
// ZI/ZS state of the region at the time of asset creation.
Expected *IsolationExpectations `json:"expected,omitempty"`
// ExtraParameters: Defines extra parameters required for specific asset types.
ExtraParameters []*ExtraParameter `json:"extraParameters,omitempty"`
// LocationData: Contains all kinds of physical location definitions for this
// asset.
LocationData []*LocationData `json:"locationData,omitempty"`
// ParentAsset: Defines parents assets if any in order to allow later
// generation of child_asset_location data via child assets.
ParentAsset []*CloudAsset `json:"parentAsset,omitempty"`
// ForceSendFields is a list of field names (e.g. "CcfeRmsPath") 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. "CcfeRmsPath") 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 AssetLocation) MarshalJSON() ([]byte, error) {
type NoMethod AssetLocation
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// BigQueryDestination: Message describing big query destination
type BigQueryDestination struct {
// CreateNewResultsTable: Optional. determine if results will be saved in a new
// table
CreateNewResultsTable bool `json:"createNewResultsTable,omitempty"`
// DestinationDataset: Optional. destination dataset to save evaluation results
DestinationDataset string `json:"destinationDataset,omitempty"`
// ForceSendFields is a list of field names (e.g. "CreateNewResultsTable") 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. "CreateNewResultsTable") 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 BigQueryDestination) MarshalJSON() ([]byte, error) {
type NoMethod BigQueryDestination
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// BlobstoreLocation: Policy ID that identified data placement in Blobstore as
// per go/blobstore-user-guide#data-metadata-placement-and-failure-domains
type BlobstoreLocation struct {
PolicyId []string `json:"policyId,omitempty"`
// ForceSendFields is a list of field names (e.g. "PolicyId") 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. "PolicyId") 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 BlobstoreLocation) MarshalJSON() ([]byte, error) {
type NoMethod BlobstoreLocation
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// CancelOperationRequest: The request message for Operations.CancelOperation.
type CancelOperationRequest struct {
}
type CloudAsset struct {
AssetName string `json:"assetName,omitempty"`
AssetType string `json:"assetType,omitempty"`
// ForceSendFields is a list of field names (e.g. "AssetName") 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. "AssetName") 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 CloudAsset) MarshalJSON() ([]byte, error) {
type NoMethod CloudAsset
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type CloudAssetComposition struct {
ChildAsset []*CloudAsset `json:"childAsset,omitempty"`
// ForceSendFields is a list of field names (e.g. "ChildAsset") 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. "ChildAsset") 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 CloudAssetComposition) MarshalJSON() ([]byte, error) {
type NoMethod CloudAssetComposition
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Command: * Command specifies the type of command to execute.
type Command struct {
// AgentCommand: AgentCommand specifies a one-time executable program for the
// agent to run.
AgentCommand *AgentCommand `json:"agentCommand,omitempty"`
// ShellCommand: ShellCommand is invoked via the agent's command line executor.
ShellCommand *ShellCommand `json:"shellCommand,omitempty"`
// ForceSendFields is a list of field names (e.g. "AgentCommand") 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. "AgentCommand") 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 Command) MarshalJSON() ([]byte, error) {
type NoMethod Command
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type DirectLocationAssignment struct {
Location []*LocationAssignment `json:"location,omitempty"`
// ForceSendFields is a list of field names (e.g. "Location") 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. "Location") 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 DirectLocationAssignment) MarshalJSON() ([]byte, error) {
type NoMethod DirectLocationAssignment
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Empty: A generic empty message that you can re-use to avoid defining
// duplicated empty messages in your APIs. A typical example is to use it as
// the request or the response type of an API method. For instance: service Foo
// { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
type Empty struct {
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
}
// Evaluation: LINT.IfChange Message describing Evaluation object
type Evaluation struct {
// BigQueryDestination: Optional. BigQuery destination
BigQueryDestination *BigQueryDestination `json:"bigQueryDestination,omitempty"`
// CreateTime: Output only. [Output only] Create time stamp
CreateTime string `json:"createTime,omitempty"`
// CustomRulesBucket: The Cloud Storage bucket name for custom rules.
CustomRulesBucket string `json:"customRulesBucket,omitempty"`
// Description: Description of the Evaluation
Description string `json:"description,omitempty"`
// Labels: Labels as key value pairs
Labels map[string]string `json:"labels,omitempty"`
// Name: name of resource names have the form
// 'projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}'
Name string `json:"name,omitempty"`
// ResourceFilter: annotations as key value pairs
ResourceFilter *ResourceFilter `json:"resourceFilter,omitempty"`
// ResourceStatus: Output only. [Output only] The updated rule ids if exist.
ResourceStatus *ResourceStatus `json:"resourceStatus,omitempty"`
// RuleNames: the name of the rule
RuleNames []string `json:"ruleNames,omitempty"`
// RuleVersions: Output only. [Output only] The updated rule ids if exist.
RuleVersions []string `json:"ruleVersions,omitempty"`
// Schedule: crontab format schedule for scheduled evaluation, currently only
// support the following schedule: "0 */1 * * *", "0 */6 * * *", "0 */12 * *
// *", "0 0 */1 * *", "0 0 */7 * *",
Schedule string `json:"schedule,omitempty"`
// UpdateTime: Output only. [Output only] Update time stamp
UpdateTime string `json:"updateTime,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "BigQueryDestination") 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. "BigQueryDestination") 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 Evaluation) MarshalJSON() ([]byte, error) {
type NoMethod Evaluation
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Execution: Message describing Execution object
type Execution struct {
// EndTime: Output only. [Output only] End time stamp
EndTime string `json:"endTime,omitempty"`
// EvaluationId: Output only. [Output only] Evaluation ID
EvaluationId string `json:"evaluationId,omitempty"`
// ExternalDataSources: Optional. External data sources
ExternalDataSources []*ExternalDataSources `json:"externalDataSources,omitempty"`
// InventoryTime: Output only. [Output only] Inventory time stamp
InventoryTime string `json:"inventoryTime,omitempty"`
// Labels: Labels as key value pairs
Labels map[string]string `json:"labels,omitempty"`
// Name: The name of execution resource. The format is
// projects/{project}/locations/{location}/evaluations/{evaluation}/executions/{
// execution}
Name string `json:"name,omitempty"`
// RunType: type represent whether the execution executed directly by user or
// scheduled according evaluation.schedule field.
//
// Possible values:
// "TYPE_UNSPECIFIED" - type of execution is unspecified
// "ONE_TIME" - type of execution is one time
// "SCHEDULED" - type of execution is scheduled
RunType string `json:"runType,omitempty"`
// StartTime: Output only. [Output only] Start time stamp
StartTime string `json:"startTime,omitempty"`
// State: Output only. [Output only] State
//
// Possible values:
// "STATE_UNSPECIFIED" - state of execution is unspecified
// "RUNNING" - the execution is running in backend service
// "SUCCEEDED" - the execution run success
// "FAILED" - the execution run failed
State string `json:"state,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "EndTime") 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. "EndTime") 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 Execution) MarshalJSON() ([]byte, error) {
type NoMethod Execution
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ExecutionResult: Message describing the result of an execution
type ExecutionResult struct {
// Commands: The commands to remediate the violation.
Commands []*Command `json:"commands,omitempty"`
// DocumentationUrl: The URL for the documentation of the rule.
DocumentationUrl string `json:"documentationUrl,omitempty"`
// Resource: The resource that violates the rule.
Resource *Resource `json:"resource,omitempty"`
// Rule: The rule that is violated in an evaluation.
Rule string `json:"rule,omitempty"`
// Severity: The severity of violation.
Severity string `json:"severity,omitempty"`
// ViolationDetails: The details of violation in an evaluation result.
ViolationDetails *ViolationDetails `json:"violationDetails,omitempty"`
// ViolationMessage: The violation message of an execution.
ViolationMessage string `json:"violationMessage,omitempty"`
// ForceSendFields is a list of field names (e.g. "Commands") 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. "Commands") 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 ExecutionResult) MarshalJSON() ([]byte, error) {
type NoMethod ExecutionResult
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ExternalDataSources: Message for external data sources
type ExternalDataSources struct {
// AssetType: Required. The asset type of the external data source this can be
// one of go/cai-asset-types to override the default asset type or it can be a
// custom type defined by the user custom type must match the asset type in the
// rule
AssetType string `json:"assetType,omitempty"`
// Name: Optional. Name of external data source. The name will be used inside
// the rego/sql to refer the external data
Name string `json:"name,omitempty"`
// Type: Required. Type of external data source
//
// Possible values:
// "TYPE_UNSPECIFIED" - Unknown type
// "BIG_QUERY_TABLE" - BigQuery table
Type string `json:"type,omitempty"`
// Uri: Required. URI of external data source. example of bq table
// {project_ID}.{dataset_ID}.{table_ID}
Uri string `json:"uri,omitempty"`
// ForceSendFields is a list of field names (e.g. "AssetType") 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. "AssetType") 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 ExternalDataSources) MarshalJSON() ([]byte, error) {
type NoMethod ExternalDataSources
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ExtraParameter: Defines parameters that should only be used for specific
// asset types.
type ExtraParameter struct {
// RegionalMigDistributionPolicy: Details about zones used by regional
// compute.googleapis.com/InstanceGroupManager to create instances.
RegionalMigDistributionPolicy *RegionalMigDistributionPolicy `json:"regionalMigDistributionPolicy,omitempty"`
// ForceSendFields is a list of field names (e.g.
// "RegionalMigDistributionPolicy") 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. "RegionalMigDistributionPolicy")
// 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 ExtraParameter) MarshalJSON() ([]byte, error) {
type NoMethod ExtraParameter
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GceInstanceFilter: Message describing compute engine instance filter
type GceInstanceFilter struct {
// ServiceAccounts: Service account of compute engine
ServiceAccounts []string `json:"serviceAccounts,omitempty"`
// ForceSendFields is a list of field names (e.g. "ServiceAccounts") 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. "ServiceAccounts") 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 GceInstanceFilter) MarshalJSON() ([]byte, error) {
type NoMethod GceInstanceFilter
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Insight: A presentation of host resource usage where the workload runs.
type Insight struct {
// InstanceId: Required. The instance id where the insight is generated from
InstanceId string `json:"instanceId,omitempty"`
// SapDiscovery: The insights data for SAP system discovery. This is a copy of
// SAP System proto and should get updated whenever that one changes.
SapDiscovery *SapDiscovery `json:"sapDiscovery,omitempty"`
// SapValidation: The insights data for the SAP workload validation.
SapValidation *SapValidation `json:"sapValidation,omitempty"`
// SentTime: Output only. [Output only] Create time stamp
SentTime string `json:"sentTime,omitempty"`
// SqlserverValidation: The insights data for the sqlserver workload
// validation.
SqlserverValidation *SqlserverValidation `json:"sqlserverValidation,omitempty"`
// ForceSendFields is a list of field names (e.g. "InstanceId") 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. "InstanceId") 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 Insight) MarshalJSON() ([]byte, error) {
type NoMethod Insight
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
type IsolationExpectations struct {
// RequirementOverride: Explicit overrides for ZI and ZS requirements to be
// used for resources that should be excluded from ZI/ZS verification logic.
RequirementOverride *RequirementOverride `json:"requirementOverride,omitempty"`
// Possible values:
// "ZI_UNSPECIFIED"
// "ZI_UNKNOWN" - To be used if tracking is not available
// "ZI_NOT_REQUIRED"
// "ZI_PREFERRED"
// "ZI_REQUIRED"
ZiOrgPolicy string `json:"ziOrgPolicy,omitempty"`
// Possible values:
// "ZI_REGION_POLICY_UNSPECIFIED"
// "ZI_REGION_POLICY_UNKNOWN" - To be used if tracking is not available
// "ZI_REGION_POLICY_NOT_SET"
// "ZI_REGION_POLICY_FAIL_OPEN"
// "ZI_REGION_POLICY_FAIL_CLOSED"
ZiRegionPolicy string `json:"ziRegionPolicy,omitempty"`
// Possible values:
// "ZI_REGION_UNSPECIFIED"
// "ZI_REGION_UNKNOWN" - To be used if tracking is not available
// "ZI_REGION_NOT_ENABLED"
// "ZI_REGION_ENABLED"
ZiRegionState string `json:"ziRegionState,omitempty"`
// ZoneIsolation: Deprecated: use zi_org_policy, zi_region_policy and
// zi_region_state instead for setting ZI expectations as per
// go/zicy-publish-physical-location.
//
// Possible values:
// "ZI_UNSPECIFIED"
// "ZI_UNKNOWN" - To be used if tracking is not available
// "ZI_NOT_REQUIRED"
// "ZI_PREFERRED"
// "ZI_REQUIRED"
ZoneIsolation string `json:"zoneIsolation,omitempty"`
// ZoneSeparation: Deprecated: use zs_org_policy, and zs_region_stateinstead
// for setting Zs expectations as per go/zicy-publish-physical-location.
//
// Possible values:
// "ZS_UNSPECIFIED"
// "ZS_UNKNOWN" - To be used if tracking is not available
// "ZS_NOT_REQUIRED"
// "ZS_REQUIRED"
ZoneSeparation string `json:"zoneSeparation,omitempty"`
// Possible values:
// "ZS_UNSPECIFIED"
// "ZS_UNKNOWN" - To be used if tracking is not available
// "ZS_NOT_REQUIRED"
// "ZS_REQUIRED"
ZsOrgPolicy string `json:"zsOrgPolicy,omitempty"`
// Possible values:
// "ZS_REGION_UNSPECIFIED"
// "ZS_REGION_UNKNOWN" - To be used if tracking of the asset ZS-bit is not
// available
// "ZS_REGION_NOT_ENABLED"
// "ZS_REGION_ENABLED"
ZsRegionState string `json:"zsRegionState,omitempty"`
// ForceSendFields is a list of field names (e.g. "RequirementOverride") 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. "RequirementOverride") 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 IsolationExpectations) MarshalJSON() ([]byte, error) {
type NoMethod IsolationExpectations
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ListEvaluationsResponse: Message for response to listing Evaluations
type ListEvaluationsResponse struct {
// Evaluations: The list of Evaluation
Evaluations []*Evaluation `json:"evaluations,omitempty"`
// NextPageToken: A token identifying a page of results the server should
// return.
NextPageToken string `json:"nextPageToken,omitempty"`
// Unreachable: Locations that could not be reached.
Unreachable []string `json:"unreachable,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Evaluations") 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. "Evaluations") 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 ListEvaluationsResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListEvaluationsResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ListExecutionResultsResponse: Message for response of list execution results
type ListExecutionResultsResponse struct {
// ExecutionResults: The versions from the specified publisher.
ExecutionResults []*ExecutionResult `json:"executionResults,omitempty"`
// NextPageToken: A token, which can be sent as `page_token` to retrieve the
// next page. If this field is omitted, there are no subsequent pages.
NextPageToken string `json:"nextPageToken,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "ExecutionResults") 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. "ExecutionResults") 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 ListExecutionResultsResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListExecutionResultsResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ListExecutionsResponse: Message for response to listing Executions
type ListExecutionsResponse struct {
// Executions: The list of Execution
Executions []*Execution `json:"executions,omitempty"`
// NextPageToken: A token identifying a page of results the server should
// return.
NextPageToken string `json:"nextPageToken,omitempty"`
// Unreachable: Locations that could not be reached.
Unreachable []string `json:"unreachable,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Executions") 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. "Executions") 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 ListExecutionsResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListExecutionsResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ListLocationsResponse: The response message for Locations.ListLocations.
type ListLocationsResponse struct {
// Locations: A list of locations that matches the specified filter in the
// request.
Locations []*Location `json:"locations,omitempty"`
// NextPageToken: The standard List next-page token.
NextPageToken string `json:"nextPageToken,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Locations") 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. "Locations") 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 ListLocationsResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListLocationsResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ListOperationsResponse: The response message for Operations.ListOperations.
type ListOperationsResponse struct {
// NextPageToken: The standard List next-page token.
NextPageToken string `json:"nextPageToken,omitempty"`
// Operations: A list of operations that matches the specified filter in the
// request.
Operations []*Operation `json:"operations,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "NextPageToken") 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. "NextPageToken") 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 ListOperationsResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListOperationsResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ListRulesResponse: Mesesage of response of list rules
type ListRulesResponse struct {
// NextPageToken: A token identifying a page of results the server should
// return.
NextPageToken string `json:"nextPageToken,omitempty"`
// Rules: all rules in response
Rules []*Rule `json:"rules,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "NextPageToken") 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. "NextPageToken") 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 ListRulesResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListRulesResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ListScannedResourcesResponse: Message for response to list scanned resources
type ListScannedResourcesResponse struct {
// NextPageToken: A token, which can be sent as `page_token` to retrieve the
// next page. If this field is omitted, there are no subsequent pages.
NextPageToken string `json:"nextPageToken,omitempty"`
// ScannedResources: All scanned resources in response
ScannedResources []*ScannedResource `json:"scannedResources,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "NextPageToken") 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. "NextPageToken") 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 ListScannedResourcesResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListScannedResourcesResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Location: A resource that represents a Google Cloud location.
type Location struct {