-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathworkstations-gen.go
5772 lines (5358 loc) · 240 KB
/
workstations-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 workstations provides access to the Cloud Workstations API.
//
// For product documentation, see: https://cloud.google.com/workstations
//
// # 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/workstations/v1"
// ...
// ctx := context.Background()
// workstationsService, err := workstations.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]:
//
// workstationsService, err := workstations.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, ...)
// workstationsService, err := workstations.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See [google.golang.org/api/option.ClientOption] for details on options.
package workstations // import "google.golang.org/api/workstations/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 = "workstations:v1"
const apiName = "workstations"
const apiVersion = "v1"
const basePath = "https://workstations.googleapis.com/"
const basePathTemplate = "https://workstations.UNIVERSE_DOMAIN/"
const mtlsBasePath = "https://workstations.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.Operations = NewProjectsLocationsOperationsService(s)
rs.WorkstationClusters = NewProjectsLocationsWorkstationClustersService(s)
return rs
}
type ProjectsLocationsService struct {
s *Service
Operations *ProjectsLocationsOperationsService
WorkstationClusters *ProjectsLocationsWorkstationClustersService
}
func NewProjectsLocationsOperationsService(s *Service) *ProjectsLocationsOperationsService {
rs := &ProjectsLocationsOperationsService{s: s}
return rs
}
type ProjectsLocationsOperationsService struct {
s *Service
}
func NewProjectsLocationsWorkstationClustersService(s *Service) *ProjectsLocationsWorkstationClustersService {
rs := &ProjectsLocationsWorkstationClustersService{s: s}
rs.WorkstationConfigs = NewProjectsLocationsWorkstationClustersWorkstationConfigsService(s)
return rs
}
type ProjectsLocationsWorkstationClustersService struct {
s *Service
WorkstationConfigs *ProjectsLocationsWorkstationClustersWorkstationConfigsService
}
func NewProjectsLocationsWorkstationClustersWorkstationConfigsService(s *Service) *ProjectsLocationsWorkstationClustersWorkstationConfigsService {
rs := &ProjectsLocationsWorkstationClustersWorkstationConfigsService{s: s}
rs.Workstations = NewProjectsLocationsWorkstationClustersWorkstationConfigsWorkstationsService(s)
return rs
}
type ProjectsLocationsWorkstationClustersWorkstationConfigsService struct {
s *Service
Workstations *ProjectsLocationsWorkstationClustersWorkstationConfigsWorkstationsService
}
func NewProjectsLocationsWorkstationClustersWorkstationConfigsWorkstationsService(s *Service) *ProjectsLocationsWorkstationClustersWorkstationConfigsWorkstationsService {
rs := &ProjectsLocationsWorkstationClustersWorkstationConfigsWorkstationsService{s: s}
return rs
}
type ProjectsLocationsWorkstationClustersWorkstationConfigsWorkstationsService struct {
s *Service
}
// Accelerator: An accelerator card attached to the instance.
type Accelerator struct {
// Count: Optional. Number of accelerator cards exposed to the instance.
Count int64 `json:"count,omitempty"`
// Type: Optional. Type of accelerator resource to attach to the instance, for
// example, "nvidia-tesla-p100".
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Count") 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. "Count") 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 Accelerator) MarshalJSON() ([]byte, error) {
type NoMethod Accelerator
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// AuditConfig: Specifies the audit configuration for a service. The
// configuration determines which permission types are logged, and what
// identities, if any, are exempted from logging. An AuditConfig must have one
// or more AuditLogConfigs. If there are AuditConfigs for both `allServices`
// and a specific service, the union of the two AuditConfigs is used for that
// service: the log_types specified in each AuditConfig are enabled, and the
// exempted_members in each AuditLogConfig are exempted. Example Policy with
// multiple AuditConfigs: { "audit_configs": [ { "service": "allServices",
// "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [
// "user:jose@example.com" ] }, { "log_type": "DATA_WRITE" }, { "log_type":
// "ADMIN_READ" } ] }, { "service": "sampleservice.googleapis.com",
// "audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type":
// "DATA_WRITE", "exempted_members": [ "user:aliya@example.com" ] } ] } ] } For
// sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ
// logging. It also exempts `jose@example.com` from DATA_READ logging, and
// `aliya@example.com` from DATA_WRITE logging.
type AuditConfig struct {
// AuditLogConfigs: The configuration for logging of each type of permission.
AuditLogConfigs []*AuditLogConfig `json:"auditLogConfigs,omitempty"`
// Service: Specifies a service that will be enabled for audit logging. For
// example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices`
// is a special value that covers all services.
Service string `json:"service,omitempty"`
// ForceSendFields is a list of field names (e.g. "AuditLogConfigs") 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. "AuditLogConfigs") 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 AuditConfig) MarshalJSON() ([]byte, error) {
type NoMethod AuditConfig
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// AuditLogConfig: Provides the configuration for logging a type of
// permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ",
// "exempted_members": [ "user:jose@example.com" ] }, { "log_type":
// "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while
// exempting jose@example.com from DATA_READ logging.
type AuditLogConfig struct {
// ExemptedMembers: Specifies the identities that do not cause logging for this
// type of permission. Follows the same format of Binding.members.
ExemptedMembers []string `json:"exemptedMembers,omitempty"`
// LogType: The log type that this config enables.
//
// Possible values:
// "LOG_TYPE_UNSPECIFIED" - Default case. Should never be this.
// "ADMIN_READ" - Admin reads. Example: CloudIAM getIamPolicy
// "DATA_WRITE" - Data writes. Example: CloudSQL Users create
// "DATA_READ" - Data reads. Example: CloudSQL Users list
LogType string `json:"logType,omitempty"`
// ForceSendFields is a list of field names (e.g. "ExemptedMembers") 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. "ExemptedMembers") 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 AuditLogConfig) MarshalJSON() ([]byte, error) {
type NoMethod AuditLogConfig
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Binding: Associates `members`, or principals, with a `role`.
type Binding struct {
// Condition: The condition that is associated with this binding. If the
// condition evaluates to `true`, then this binding applies to the current
// request. If the condition evaluates to `false`, then this binding does not
// apply to the current request. However, a different role binding might grant
// the same role to one or more of the principals in this binding. To learn
// which resources support conditions in their IAM policies, see the IAM
// documentation
// (https://cloud.google.com/iam/help/conditions/resource-policies).
Condition *Expr `json:"condition,omitempty"`
// Members: Specifies the principals requesting access for a Google Cloud
// resource. `members` can have the following values: * `allUsers`: A special
// identifier that represents anyone who is on the internet; with or without a
// Google account. * `allAuthenticatedUsers`: A special identifier that
// represents anyone who is authenticated with a Google account or a service
// account. Does not include identities that come from external identity
// providers (IdPs) through identity federation. * `user:{emailid}`: An email
// address that represents a specific Google account. For example,
// `alice@example.com` . * `serviceAccount:{emailid}`: An email address that
// represents a Google service account. For example,
// `my-other-app@appspot.gserviceaccount.com`. *
// `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An
// identifier for a Kubernetes service account
// (https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts).
// For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. *
// `group:{emailid}`: An email address that represents a Google group. For
// example, `admins@example.com`. * `domain:{domain}`: The G Suite domain
// (primary) that represents all the users of that domain. For example,
// `google.com` or `example.com`. *
// `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/sub
// ject/{subject_attribute_value}`: A single identity in a workforce identity
// pool. *
// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/
// group/{group_id}`: All workforce identities in a group. *
// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/
// attribute.{attribute_name}/{attribute_value}`: All workforce identities with
// a specific attribute value. *
// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/
// *`: All identities in a workforce identity pool. *
// `principal://iam.googleapis.com/projects/{project_number}/locations/global/wo
// rkloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single
// identity in a workload identity pool. *
// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global
// /workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool
// group. *
// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global
// /workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}
// `: All identities in a workload identity pool with a certain attribute. *
// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global
// /workloadIdentityPools/{pool_id}/*`: All identities in a workload identity
// pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus
// unique identifier) representing a user that has been recently deleted. For
// example, `alice@example.com?uid=123456789012345678901`. If the user is
// recovered, this value reverts to `user:{emailid}` and the recovered user
// retains the role in the binding. *
// `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus
// unique identifier) representing a service account that has been recently
// deleted. For example,
// `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the
// service account is undeleted, this value reverts to
// `serviceAccount:{emailid}` and the undeleted service account retains the
// role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email
// address (plus unique identifier) representing a Google group that has been
// recently deleted. For example,
// `admins@example.com?uid=123456789012345678901`. If the group is recovered,
// this value reverts to `group:{emailid}` and the recovered group retains the
// role in the binding. *
// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool
// _id}/subject/{subject_attribute_value}`: Deleted single identity in a
// workforce identity pool. For example,
// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-po
// ol-id/subject/my-subject-attribute-value`.
Members []string `json:"members,omitempty"`
// Role: Role that is assigned to the list of `members`, or principals. For
// example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview
// of the IAM roles and permissions, see the IAM documentation
// (https://cloud.google.com/iam/docs/roles-overview). For a list of the
// available pre-defined roles, see here
// (https://cloud.google.com/iam/docs/understanding-roles).
Role string `json:"role,omitempty"`
// ForceSendFields is a list of field names (e.g. "Condition") 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. "Condition") 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 Binding) MarshalJSON() ([]byte, error) {
type NoMethod Binding
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// CancelOperationRequest: The request message for Operations.CancelOperation.
type CancelOperationRequest struct {
}
// Container: A Docker container.
type Container struct {
// Args: Optional. Arguments passed to the entrypoint.
Args []string `json:"args,omitempty"`
// Command: Optional. If set, overrides the default ENTRYPOINT specified by the
// image.
Command []string `json:"command,omitempty"`
// Env: Optional. Environment variables passed to the container's entrypoint.
Env map[string]string `json:"env,omitempty"`
// Image: Optional. A Docker container image that defines a custom environment.
// Cloud Workstations provides a number of preconfigured images
// (https://cloud.google.com/workstations/docs/preconfigured-base-images), but
// you can create your own custom container images
// (https://cloud.google.com/workstations/docs/custom-container-images). If
// using a private image, the `host.gceInstance.serviceAccount` field must be
// specified in the workstation configuration. If using a custom container
// image, the service account must have Artifact Registry Reader
// (https://cloud.google.com/artifact-registry/docs/access-control#roles)
// permission to pull the specified image. Otherwise, the image must be
// publicly accessible.
Image string `json:"image,omitempty"`
// RunAsUser: Optional. If set, overrides the USER specified in the image with
// the given uid.
RunAsUser int64 `json:"runAsUser,omitempty"`
// WorkingDir: Optional. If set, overrides the default DIR specified by the
// image.
WorkingDir string `json:"workingDir,omitempty"`
// ForceSendFields is a list of field names (e.g. "Args") 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. "Args") 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 Container) MarshalJSON() ([]byte, error) {
type NoMethod Container
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// CustomerEncryptionKey: A customer-managed encryption key (CMEK) for the
// Compute Engine resources of the associated workstation configuration.
// Specify the name of your Cloud KMS encryption key and the default service
// account. We recommend that you use a separate service account and follow
// Cloud KMS best practices
// (https://cloud.google.com/kms/docs/separation-of-duties).
type CustomerEncryptionKey struct {
// KmsKey: Immutable. The name of the Google Cloud KMS encryption key. For
// example,
// "projects/PROJECT_ID/locations/REGION/keyRings/KEY_RING/cryptoKeys/KEY_NAME"
// `. The key must be in the same region as the workstation configuration.
KmsKey string `json:"kmsKey,omitempty"`
// KmsKeyServiceAccount: Immutable. The service account to use with the
// specified KMS key. We recommend that you use a separate service account and
// follow KMS best practices. For more information, see Separation of duties
// (https://cloud.google.com/kms/docs/separation-of-duties) and `gcloud kms
// keys add-iam-policy-binding` `--member`
// (https://cloud.google.com/sdk/gcloud/reference/kms/keys/add-iam-policy-binding#--member).
KmsKeyServiceAccount string `json:"kmsKeyServiceAccount,omitempty"`
// ForceSendFields is a list of field names (e.g. "KmsKey") 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. "KmsKey") 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 CustomerEncryptionKey) MarshalJSON() ([]byte, error) {
type NoMethod CustomerEncryptionKey
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// DomainConfig: Configuration options for a custom domain.
type DomainConfig struct {
// Domain: Immutable. Domain used by Workstations for HTTP ingress.
Domain string `json:"domain,omitempty"`
// ForceSendFields is a list of field names (e.g. "Domain") 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. "Domain") 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 DomainConfig) MarshalJSON() ([]byte, error) {
type NoMethod DomainConfig
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// EphemeralDirectory: An ephemeral directory which won't persist across
// workstation sessions. It is freshly created on every workstation start
// operation.
type EphemeralDirectory struct {
// GcePd: An EphemeralDirectory backed by a Compute Engine persistent disk.
GcePd *GcePersistentDisk `json:"gcePd,omitempty"`
// MountPath: Required. Location of this directory in the running workstation.
MountPath string `json:"mountPath,omitempty"`
// ForceSendFields is a list of field names (e.g. "GcePd") 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. "GcePd") 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 EphemeralDirectory) MarshalJSON() ([]byte, error) {
type NoMethod EphemeralDirectory
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Expr: Represents a textual expression in the Common Expression Language
// (CEL) syntax. CEL is a C-like expression language. The syntax and semantics
// of CEL are documented at https://github.com/google/cel-spec. Example
// (Comparison): title: "Summary size limit" description: "Determines if a
// summary is less than 100 chars" expression: "document.summary.size() < 100"
// Example (Equality): title: "Requestor is owner" description: "Determines if
// requestor is the document owner" expression: "document.owner ==
// request.auth.claims.email" Example (Logic): title: "Public documents"
// description: "Determine whether the document should be publicly visible"
// expression: "document.type != 'private' && document.type != 'internal'"
// Example (Data Manipulation): title: "Notification string" description:
// "Create a notification string with a timestamp." expression: "'New message
// received at ' + string(document.create_time)" The exact variables and
// functions that may be referenced within an expression are determined by the
// service that evaluates it. See the service documentation for additional
// information.
type Expr struct {
// Description: Optional. Description of the expression. This is a longer text
// which describes the expression, e.g. when hovered over it in a UI.
Description string `json:"description,omitempty"`
// Expression: Textual representation of an expression in Common Expression
// Language syntax.
Expression string `json:"expression,omitempty"`
// Location: Optional. String indicating the location of the expression for
// error reporting, e.g. a file name and a position in the file.
Location string `json:"location,omitempty"`
// Title: Optional. Title for the expression, i.e. a short string describing
// its purpose. This can be used e.g. in UIs which allow to enter the
// expression.
Title string `json:"title,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 Expr) MarshalJSON() ([]byte, error) {
type NoMethod Expr
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GceConfidentialInstanceConfig: A set of Compute Engine Confidential VM
// instance options.
type GceConfidentialInstanceConfig struct {
// EnableConfidentialCompute: Optional. Whether the instance has confidential
// compute enabled.
EnableConfidentialCompute bool `json:"enableConfidentialCompute,omitempty"`
// ForceSendFields is a list of field names (e.g. "EnableConfidentialCompute")
// 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. "EnableConfidentialCompute") 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 GceConfidentialInstanceConfig) MarshalJSON() ([]byte, error) {
type NoMethod GceConfidentialInstanceConfig
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GceInstance: A runtime using a Compute Engine instance.
type GceInstance struct {
// Accelerators: Optional. A list of the type and count of accelerator cards
// attached to the instance.
Accelerators []*Accelerator `json:"accelerators,omitempty"`
// BootDiskSizeGb: Optional. The size of the boot disk for the VM in gigabytes
// (GB). The minimum boot disk size is `30` GB. Defaults to `50` GB.
BootDiskSizeGb int64 `json:"bootDiskSizeGb,omitempty"`
// ConfidentialInstanceConfig: Optional. A set of Compute Engine Confidential
// VM instance options.
ConfidentialInstanceConfig *GceConfidentialInstanceConfig `json:"confidentialInstanceConfig,omitempty"`
// DisablePublicIpAddresses: Optional. When set to true, disables public IP
// addresses for VMs. If you disable public IP addresses, you must set up
// Private Google Access or Cloud NAT on your network. If you use Private
// Google Access and you use `private.googleapis.com` or
// `restricted.googleapis.com` for Container Registry and Artifact Registry,
// make sure that you set up DNS records for domains `*.gcr.io` and
// `*.pkg.dev`. Defaults to false (VMs have public IP addresses).
DisablePublicIpAddresses bool `json:"disablePublicIpAddresses,omitempty"`
// DisableSsh: Optional. Whether to disable SSH access to the VM.
DisableSsh bool `json:"disableSsh,omitempty"`
// EnableNestedVirtualization: Optional. Whether to enable nested
// virtualization on Cloud Workstations VMs created using this workstation
// configuration. Defaults to false. Nested virtualization lets you run virtual
// machine (VM) instances inside your workstation. Before enabling nested
// virtualization, consider the following important considerations. Cloud
// Workstations instances are subject to the same restrictions as Compute
// Engine instances
// (https://cloud.google.com/compute/docs/instances/nested-virtualization/overview#restrictions):
// * **Organization policy**: projects, folders, or organizations may be
// restricted from creating nested VMs if the **Disable VM nested
// virtualization** constraint is enforced in the organization policy. For more
// information, see the Compute Engine section, Checking whether nested
// virtualization is allowed
// (https://cloud.google.com/compute/docs/instances/nested-virtualization/managing-constraint#checking_whether_nested_virtualization_is_allowed).
// * **Performance**: nested VMs might experience a 10% or greater decrease in
// performance for workloads that are CPU-bound and possibly greater than a 10%
// decrease for workloads that are input/output bound. * **Machine Type**:
// nested virtualization can only be enabled on workstation configurations that
// specify a machine_type in the N1 or N2 machine series.
EnableNestedVirtualization bool `json:"enableNestedVirtualization,omitempty"`
// MachineType: Optional. The type of machine to use for VM instances—for
// example, "e2-standard-4". For more information about machine types that
// Cloud Workstations supports, see the list of available machine types
// (https://cloud.google.com/workstations/docs/available-machine-types).
MachineType string `json:"machineType,omitempty"`
// PoolSize: Optional. The number of VMs that the system should keep idle so
// that new workstations can be started quickly for new users. Defaults to `0`
// in the API.
PoolSize int64 `json:"poolSize,omitempty"`
// PooledInstances: Output only. Number of instances currently available in the
// pool for faster workstation startup.
PooledInstances int64 `json:"pooledInstances,omitempty"`
// ServiceAccount: Optional. The email address of the service account for Cloud
// Workstations VMs created with this configuration. When specified, be sure
// that the service account has `logging.logEntries.create` and
// `monitoring.timeSeries.create` permissions on the project so it can write
// logs out to Cloud Logging. If using a custom container image, the service
// account must have Artifact Registry Reader
// (https://cloud.google.com/artifact-registry/docs/access-control#roles)
// permission to pull the specified image. If you as the administrator want to
// be able to `ssh` into the underlying VM, you need to set this value to a
// service account for which you have the `iam.serviceAccounts.actAs`
// permission. Conversely, if you don't want anyone to be able to `ssh` into
// the underlying VM, use a service account where no one has that permission.
// If not set, VMs run with a service account provided by the Cloud
// Workstations service, and the image must be publicly accessible.
ServiceAccount string `json:"serviceAccount,omitempty"`
// ServiceAccountScopes: Optional. Scopes to grant to the service_account. When
// specified, users of workstations under this configuration must have
// `iam.serviceAccounts.actAs` on the service account.
ServiceAccountScopes []string `json:"serviceAccountScopes,omitempty"`
// ShieldedInstanceConfig: Optional. A set of Compute Engine Shielded instance
// options.
ShieldedInstanceConfig *GceShieldedInstanceConfig `json:"shieldedInstanceConfig,omitempty"`
// Tags: Optional. Network tags to add to the Compute Engine VMs backing the
// workstations. This option applies network tags
// (https://cloud.google.com/vpc/docs/add-remove-network-tags) to VMs created
// with this configuration. These network tags enable the creation of firewall
// rules (https://cloud.google.com/workstations/docs/configure-firewall-rules).
Tags []string `json:"tags,omitempty"`
// VmTags: Optional. Resource manager tags to be bound to this instance. Tag
// keys and values have the same definition as resource manager tags
// (https://cloud.google.com/resource-manager/docs/tags/tags-overview). Keys
// must be in the format `tagKeys/{tag_key_id}`, and values are in the format
// `tagValues/456`.
VmTags map[string]string `json:"vmTags,omitempty"`
// ForceSendFields is a list of field names (e.g. "Accelerators") 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. "Accelerators") 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 GceInstance) MarshalJSON() ([]byte, error) {
type NoMethod GceInstance
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GcePersistentDisk: An EphemeralDirectory is backed by a Compute Engine
// persistent disk.
type GcePersistentDisk struct {
// DiskType: Optional. Type of the disk to use. Defaults to "pd-standard".
DiskType string `json:"diskType,omitempty"`
// ReadOnly: Optional. Whether the disk is read only. If true, the disk may be
// shared by multiple VMs and source_snapshot must be set.
ReadOnly bool `json:"readOnly,omitempty"`
// SourceImage: Optional. Name of the disk image to use as the source for the
// disk. Must be empty if source_snapshot is set. Updating source_image will
// update content in the ephemeral directory after the workstation is
// restarted. This field is mutable.
SourceImage string `json:"sourceImage,omitempty"`
// SourceSnapshot: Optional. Name of the snapshot to use as the source for the
// disk. Must be empty if source_image is set. Must be empty if read_only is
// false. Updating source_snapshot will update content in the ephemeral
// directory after the workstation is restarted. This field is mutable.
SourceSnapshot string `json:"sourceSnapshot,omitempty"`
// ForceSendFields is a list of field names (e.g. "DiskType") 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. "DiskType") 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 GcePersistentDisk) MarshalJSON() ([]byte, error) {
type NoMethod GcePersistentDisk
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GceRegionalPersistentDisk: A Persistent Directory backed by a Compute Engine
// regional persistent disk. The persistent_directories field is repeated, but
// it may contain only one entry. It creates a persistent disk
// (https://cloud.google.com/compute/docs/disks/persistent-disks) that mounts
// to the workstation VM at `/home` when the session starts and detaches when
// the session ends. If this field is empty, workstations created with this
// configuration do not have a persistent home directory.
type GceRegionalPersistentDisk struct {
// DiskType: Optional. The type of the persistent disk
// (https://cloud.google.com/compute/docs/disks#disk-types) for the home
// directory. Defaults to "pd-standard".
DiskType string `json:"diskType,omitempty"`
// FsType: Optional. Type of file system that the disk should be formatted
// with. The workstation image must support this file system type. Must be
// empty if source_snapshot is set. Defaults to "ext4".
FsType string `json:"fsType,omitempty"`
// ReclaimPolicy: Optional. Whether the persistent disk should be deleted when
// the workstation is deleted. Valid values are `DELETE` and `RETAIN`. Defaults
// to `DELETE`.
//
// Possible values:
// "RECLAIM_POLICY_UNSPECIFIED" - Do not use.
// "DELETE" - Delete the persistent disk when deleting the workstation.
// "RETAIN" - Keep the persistent disk when deleting the workstation. An
// administrator must manually delete the disk.
ReclaimPolicy string `json:"reclaimPolicy,omitempty"`
// SizeGb: Optional. The GB capacity of a persistent home directory for each
// workstation created with this configuration. Must be empty if
// source_snapshot is set. Valid values are `10`, `50`, `100`, `200`, `500`, or
// `1000`. Defaults to `200`. If less than `200` GB, the disk_type must be
// "pd-balanced" or "pd-ssd".
SizeGb int64 `json:"sizeGb,omitempty"`
// SourceSnapshot: Optional. Name of the snapshot to use as the source for the
// disk. If set, size_gb and fs_type must be empty.
SourceSnapshot string `json:"sourceSnapshot,omitempty"`
// ForceSendFields is a list of field names (e.g. "DiskType") 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. "DiskType") 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 GceRegionalPersistentDisk) MarshalJSON() ([]byte, error) {
type NoMethod GceRegionalPersistentDisk
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GceShieldedInstanceConfig: A set of Compute Engine Shielded instance
// options.
type GceShieldedInstanceConfig struct {
// EnableIntegrityMonitoring: Optional. Whether the instance has integrity
// monitoring enabled.
EnableIntegrityMonitoring bool `json:"enableIntegrityMonitoring,omitempty"`
// EnableSecureBoot: Optional. Whether the instance has Secure Boot enabled.
EnableSecureBoot bool `json:"enableSecureBoot,omitempty"`
// EnableVtpm: Optional. Whether the instance has the vTPM enabled.
EnableVtpm bool `json:"enableVtpm,omitempty"`
// ForceSendFields is a list of field names (e.g. "EnableIntegrityMonitoring")
// 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. "EnableIntegrityMonitoring") 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 GceShieldedInstanceConfig) MarshalJSON() ([]byte, error) {
type NoMethod GceShieldedInstanceConfig
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GenerateAccessTokenRequest: Request message for GenerateAccessToken.
type GenerateAccessTokenRequest struct {
// ExpireTime: Desired expiration time of the access token. This value must be
// at most 24 hours in the future. If a value is not specified, the token's
// expiration time will be set to a default value of 1 hour in the future.
ExpireTime string `json:"expireTime,omitempty"`
// Port: Optional. Port for which the access token should be generated. If
// specified, the generated access token grants access only to the specified
// port of the workstation. If specified, values must be within the range [1 -
// 65535]. If not specified, the generated access token grants access to all
// ports of the workstation.
Port int64 `json:"port,omitempty"`
// Ttl: Desired lifetime duration of the access token. This value must be at
// most 24 hours. If a value is not specified, the token's lifetime will be set
// to a default value of 1 hour.
Ttl string `json:"ttl,omitempty"`
// ForceSendFields is a list of field names (e.g. "ExpireTime") 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. "ExpireTime") 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 GenerateAccessTokenRequest) MarshalJSON() ([]byte, error) {
type NoMethod GenerateAccessTokenRequest
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GenerateAccessTokenResponse: Response message for GenerateAccessToken.
type GenerateAccessTokenResponse struct {
// AccessToken: The generated bearer access token. To use this token, include
// it in an Authorization header of an HTTP request sent to the associated
// workstation's hostname—for example, `Authorization: Bearer `.
AccessToken string `json:"accessToken,omitempty"`
// ExpireTime: Time at which the generated token will expire.
ExpireTime string `json:"expireTime,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "AccessToken") 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. "AccessToken") 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 GenerateAccessTokenResponse) MarshalJSON() ([]byte, error) {
type NoMethod GenerateAccessTokenResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GoogleProtobufEmpty: 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 GoogleProtobufEmpty struct {
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
}
// Host: Runtime host for a workstation.
type Host struct {
// GceInstance: Specifies a Compute Engine instance as the host.
GceInstance *GceInstance `json:"gceInstance,omitempty"`
// ForceSendFields is a list of field names (e.g. "GceInstance") 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. "GceInstance") 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 Host) MarshalJSON() ([]byte, error) {
type NoMethod Host
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) {