-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
notebooks-gen.go
4508 lines (4190 loc) · 176 KB
/
notebooks-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 notebooks provides access to the Notebooks API.
//
// For product documentation, see: https://cloud.google.com/notebooks/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/notebooks/v2"
// ...
// ctx := context.Background()
// notebooksService, err := notebooks.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]:
//
// notebooksService, err := notebooks.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, ...)
// notebooksService, err := notebooks.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See [google.golang.org/api/option.ClientOption] for details on options.
package notebooks // import "google.golang.org/api/notebooks/v2"
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 = "notebooks:v2"
const apiName = "notebooks"
const apiVersion = "v2"
const basePath = "https://notebooks.googleapis.com/"
const basePathTemplate = "https://notebooks.UNIVERSE_DOMAIN/"
const mtlsBasePath = "https://notebooks.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.Instances = NewProjectsLocationsInstancesService(s)
rs.Operations = NewProjectsLocationsOperationsService(s)
return rs
}
type ProjectsLocationsService struct {
s *Service
Instances *ProjectsLocationsInstancesService
Operations *ProjectsLocationsOperationsService
}
func NewProjectsLocationsInstancesService(s *Service) *ProjectsLocationsInstancesService {
rs := &ProjectsLocationsInstancesService{s: s}
return rs
}
type ProjectsLocationsInstancesService struct {
s *Service
}
func NewProjectsLocationsOperationsService(s *Service) *ProjectsLocationsOperationsService {
rs := &ProjectsLocationsOperationsService{s: s}
return rs
}
type ProjectsLocationsOperationsService struct {
s *Service
}
// AcceleratorConfig: An accelerator configuration for a VM instance Definition
// of a hardware accelerator. Note that there is no check on `type` and
// `core_count` combinations. TPUs are not supported. See GPUs on Compute
// Engine (https://cloud.google.com/compute/docs/gpus/#gpus-list) to find a
// valid combination.
type AcceleratorConfig struct {
// CoreCount: Optional. Count of cores of this accelerator.
CoreCount int64 `json:"coreCount,omitempty,string"`
// Type: Optional. Type of this accelerator.
//
// Possible values:
// "ACCELERATOR_TYPE_UNSPECIFIED" - Accelerator type is not specified.
// "NVIDIA_TESLA_P100" - Accelerator type is Nvidia Tesla P100.
// "NVIDIA_TESLA_V100" - Accelerator type is Nvidia Tesla V100.
// "NVIDIA_TESLA_P4" - Accelerator type is Nvidia Tesla P4.
// "NVIDIA_TESLA_T4" - Accelerator type is Nvidia Tesla T4.
// "NVIDIA_TESLA_A100" - Accelerator type is Nvidia Tesla A100 - 40GB.
// "NVIDIA_A100_80GB" - Accelerator type is Nvidia Tesla A100 - 80GB.
// "NVIDIA_L4" - Accelerator type is Nvidia Tesla L4.
// "NVIDIA_TESLA_T4_VWS" - Accelerator type is NVIDIA Tesla T4 Virtual
// Workstations.
// "NVIDIA_TESLA_P100_VWS" - Accelerator type is NVIDIA Tesla P100 Virtual
// Workstations.
// "NVIDIA_TESLA_P4_VWS" - Accelerator type is NVIDIA Tesla P4 Virtual
// Workstations.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "CoreCount") 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. "CoreCount") 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 AcceleratorConfig) MarshalJSON() ([]byte, error) {
type NoMethod AcceleratorConfig
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// AccessConfig: An access configuration attached to an instance's network
// interface.
type AccessConfig struct {
// ExternalIp: An external IP address associated with this instance. Specify an
// unused static external IP address available to the project or leave this
// field undefined to use an IP from a shared ephemeral IP address pool. If you
// specify a static external IP address, it must live in the same region as the
// zone of the instance.
ExternalIp string `json:"externalIp,omitempty"`
// ForceSendFields is a list of field names (e.g. "ExternalIp") 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. "ExternalIp") 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 AccessConfig) MarshalJSON() ([]byte, error) {
type NoMethod AccessConfig
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)
}
// BootDisk: The definition of a boot disk.
type BootDisk struct {
// DiskEncryption: Optional. Input only. Disk encryption method used on the
// boot and data disks, defaults to GMEK.
//
// Possible values:
// "DISK_ENCRYPTION_UNSPECIFIED" - Disk encryption is not specified.
// "GMEK" - Use Google managed encryption keys to encrypt the boot disk.
// "CMEK" - Use customer managed encryption keys to encrypt the boot disk.
DiskEncryption string `json:"diskEncryption,omitempty"`
// DiskSizeGb: Optional. The size of the boot disk in GB attached to this
// instance, up to a maximum of 64000 GB (64 TB). If not specified, this
// defaults to the recommended value of 150GB.
DiskSizeGb int64 `json:"diskSizeGb,omitempty,string"`
// DiskType: Optional. Indicates the type of the disk.
//
// Possible values:
// "DISK_TYPE_UNSPECIFIED" - Disk type not set.
// "PD_STANDARD" - Standard persistent disk type.
// "PD_SSD" - SSD persistent disk type.
// "PD_BALANCED" - Balanced persistent disk type.
// "PD_EXTREME" - Extreme persistent disk type.
DiskType string `json:"diskType,omitempty"`
// KmsKey: Optional. Input only. The KMS key used to encrypt the disks, only
// applicable if disk_encryption is CMEK. Format:
// `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys
// /{key_id}` Learn more about using your own encryption keys.
KmsKey string `json:"kmsKey,omitempty"`
// ForceSendFields is a list of field names (e.g. "DiskEncryption") 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. "DiskEncryption") 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 BootDisk) MarshalJSON() ([]byte, error) {
type NoMethod BootDisk
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// CancelOperationRequest: The request message for Operations.CancelOperation.
type CancelOperationRequest struct {
}
// CheckInstanceUpgradabilityResponse: Response for checking if a notebook
// instance is upgradeable.
type CheckInstanceUpgradabilityResponse struct {
// UpgradeImage: The new image self link this instance will be upgraded to if
// calling the upgrade endpoint. This field will only be populated if field
// upgradeable is true.
UpgradeImage string `json:"upgradeImage,omitempty"`
// UpgradeInfo: Additional information about upgrade.
UpgradeInfo string `json:"upgradeInfo,omitempty"`
// UpgradeVersion: The version this instance will be upgraded to if calling the
// upgrade endpoint. This field will only be populated if field upgradeable is
// true.
UpgradeVersion string `json:"upgradeVersion,omitempty"`
// Upgradeable: If an instance is upgradeable.
Upgradeable bool `json:"upgradeable,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "UpgradeImage") 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. "UpgradeImage") 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 CheckInstanceUpgradabilityResponse) MarshalJSON() ([]byte, error) {
type NoMethod CheckInstanceUpgradabilityResponse
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Config: Response for getting WbI configurations in a location
type Config struct {
// AvailableImages: Output only. The list of available images to create a WbI.
AvailableImages []*ImageRelease `json:"availableImages,omitempty"`
// DefaultValues: Output only. The default values for configuration.
DefaultValues *DefaultValues `json:"defaultValues,omitempty"`
// SupportedValues: Output only. The supported values for configuration.
SupportedValues *SupportedValues `json:"supportedValues,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "AvailableImages") 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. "AvailableImages") 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 Config) MarshalJSON() ([]byte, error) {
type NoMethod Config
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ContainerImage: Definition of a container image for starting a notebook
// instance with the environment installed in a container.
type ContainerImage struct {
// Repository: Required. The path to the container image repository. For
// example: `gcr.io/{project_id}/{image_name}`
Repository string `json:"repository,omitempty"`
// Tag: Optional. The tag of the container image. If not specified, this
// defaults to the latest tag.
Tag string `json:"tag,omitempty"`
// ForceSendFields is a list of field names (e.g. "Repository") 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. "Repository") 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 ContainerImage) MarshalJSON() ([]byte, error) {
type NoMethod ContainerImage
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// DataDisk: An instance-attached disk resource.
type DataDisk struct {
// DiskEncryption: Optional. Input only. Disk encryption method used on the
// boot and data disks, defaults to GMEK.
//
// Possible values:
// "DISK_ENCRYPTION_UNSPECIFIED" - Disk encryption is not specified.
// "GMEK" - Use Google managed encryption keys to encrypt the boot disk.
// "CMEK" - Use customer managed encryption keys to encrypt the boot disk.
DiskEncryption string `json:"diskEncryption,omitempty"`
// DiskSizeGb: Optional. The size of the disk in GB attached to this VM
// instance, up to a maximum of 64000 GB (64 TB). If not specified, this
// defaults to 100.
DiskSizeGb int64 `json:"diskSizeGb,omitempty,string"`
// DiskType: Optional. Input only. Indicates the type of the disk.
//
// Possible values:
// "DISK_TYPE_UNSPECIFIED" - Disk type not set.
// "PD_STANDARD" - Standard persistent disk type.
// "PD_SSD" - SSD persistent disk type.
// "PD_BALANCED" - Balanced persistent disk type.
// "PD_EXTREME" - Extreme persistent disk type.
DiskType string `json:"diskType,omitempty"`
// KmsKey: Optional. Input only. The KMS key used to encrypt the disks, only
// applicable if disk_encryption is CMEK. Format:
// `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys
// /{key_id}` Learn more about using your own encryption keys.
KmsKey string `json:"kmsKey,omitempty"`
// ForceSendFields is a list of field names (e.g. "DiskEncryption") 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. "DiskEncryption") 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 DataDisk) MarshalJSON() ([]byte, error) {
type NoMethod DataDisk
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// DefaultValues: DefaultValues represents the default configuration values.
type DefaultValues struct {
// MachineType: Output only. The default machine type used by the backend if
// not provided by the user.
MachineType string `json:"machineType,omitempty"`
// ForceSendFields is a list of field names (e.g. "MachineType") 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. "MachineType") 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 DefaultValues) MarshalJSON() ([]byte, error) {
type NoMethod DefaultValues
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// DiagnoseInstanceRequest: Request for creating a notebook instance diagnostic
// file.
type DiagnoseInstanceRequest struct {
// DiagnosticConfig: Required. Defines flags that are used to run the
// diagnostic tool
DiagnosticConfig *DiagnosticConfig `json:"diagnosticConfig,omitempty"`
// TimeoutMinutes: Optional. Maxmium amount of time in minutes before the
// operation times out.
TimeoutMinutes int64 `json:"timeoutMinutes,omitempty"`
// ForceSendFields is a list of field names (e.g. "DiagnosticConfig") 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. "DiagnosticConfig") 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 DiagnoseInstanceRequest) MarshalJSON() ([]byte, error) {
type NoMethod DiagnoseInstanceRequest
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// DiagnosticConfig: Defines flags that are used to run the diagnostic tool
type DiagnosticConfig struct {
// EnableCopyHomeFilesFlag: Optional. Enables flag to copy all `/home/jupyter`
// folder contents
EnableCopyHomeFilesFlag bool `json:"enableCopyHomeFilesFlag,omitempty"`
// EnablePacketCaptureFlag: Optional. Enables flag to capture packets from the
// instance for 30 seconds
EnablePacketCaptureFlag bool `json:"enablePacketCaptureFlag,omitempty"`
// EnableRepairFlag: Optional. Enables flag to repair service for instance
EnableRepairFlag bool `json:"enableRepairFlag,omitempty"`
// GcsBucket: Required. User Cloud Storage bucket location (REQUIRED). Must be
// formatted with path prefix (`gs://$GCS_BUCKET`). Permissions: User Managed
// Notebooks: - storage.buckets.writer: Must be given to the project's service
// account attached to VM. Google Managed Notebooks: - storage.buckets.writer:
// Must be given to the project's service account or user credentials attached
// to VM depending on authentication mode. Cloud Storage bucket Log file will
// be written to `gs://$GCS_BUCKET/$RELATIVE_PATH/$VM_DATE_$TIME.tar.gz`
GcsBucket string `json:"gcsBucket,omitempty"`
// RelativePath: Optional. Defines the relative storage path in the Cloud
// Storage bucket where the diagnostic logs will be written: Default path will
// be the root directory of the Cloud Storage bucket
// (`gs://$GCS_BUCKET/$DATE_$TIME.tar.gz`) Example of full path where Log file
// will be written: `gs://$GCS_BUCKET/$RELATIVE_PATH/`
RelativePath string `json:"relativePath,omitempty"`
// ForceSendFields is a list of field names (e.g. "EnableCopyHomeFilesFlag") 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. "EnableCopyHomeFilesFlag") 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 DiagnosticConfig) MarshalJSON() ([]byte, error) {
type NoMethod DiagnosticConfig
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:"-"`
}
// Event: The definition of an Event for a managed / semi-managed notebook
// instance.
type Event struct {
// Details: Optional. Event details. This field is used to pass event
// information.
Details map[string]string `json:"details,omitempty"`
// ReportTime: Optional. Event report time.
ReportTime string `json:"reportTime,omitempty"`
// Type: Optional. Event type.
//
// Possible values:
// "EVENT_TYPE_UNSPECIFIED" - Event is not specified.
// "IDLE" - The instance / runtime is idle
// "HEARTBEAT" - The instance / runtime is available. This event indicates
// that instance / runtime underlying compute is operational.
// "HEALTH" - The instance / runtime health is available. This event
// indicates that instance / runtime health information.
// "MAINTENANCE" - The instance / runtime is available. This event allows
// instance / runtime to send Host maintenance information to Control Plane.
// https://cloud.google.com/compute/docs/gpus/gpu-host-maintenance
// "METADATA_CHANGE" - The instance / runtime is available. This event
// indicates that the instance had metadata that needs to be modified.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Details") 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. "Details") 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 Event) MarshalJSON() ([]byte, error) {
type NoMethod Event
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)
}
// GPUDriverConfig: A GPU driver configuration
type GPUDriverConfig struct {
// CustomGpuDriverPath: Optional. Specify a custom Cloud Storage path where the
// GPU driver is stored. If not specified, we'll automatically choose from
// official GPU drivers.
CustomGpuDriverPath string `json:"customGpuDriverPath,omitempty"`
// EnableGpuDriver: Optional. Whether the end user authorizes Google Cloud to
// install GPU driver on this VM instance. If this field is empty or set to
// false, the GPU driver won't be installed. Only applicable to instances with
// GPUs.
EnableGpuDriver bool `json:"enableGpuDriver,omitempty"`
// ForceSendFields is a list of field names (e.g. "CustomGpuDriverPath") 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. "CustomGpuDriverPath") 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 GPUDriverConfig) MarshalJSON() ([]byte, error) {
type NoMethod GPUDriverConfig
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// GceSetup: The definition of how to configure a VM instance outside of
// Resources and Identity.
type GceSetup struct {
// AcceleratorConfigs: Optional. The hardware accelerators used on this
// instance. If you use accelerators, make sure that your configuration has
// enough vCPUs and memory to support the `machine_type` you have selected
// (https://cloud.google.com/compute/docs/gpus/#gpus-list). Currently supports
// only one accelerator configuration.
AcceleratorConfigs []*AcceleratorConfig `json:"acceleratorConfigs,omitempty"`
// BootDisk: Optional. The boot disk for the VM.
BootDisk *BootDisk `json:"bootDisk,omitempty"`
// ContainerImage: Optional. Use a container image to start the notebook
// instance.
ContainerImage *ContainerImage `json:"containerImage,omitempty"`
// DataDisks: Optional. Data disks attached to the VM instance. Currently
// supports only one data disk.
DataDisks []*DataDisk `json:"dataDisks,omitempty"`
// DisablePublicIp: Optional. If true, no external IP will be assigned to this
// VM instance.
DisablePublicIp bool `json:"disablePublicIp,omitempty"`
// EnableIpForwarding: Optional. Flag to enable ip forwarding or not, default
// false/off. https://cloud.google.com/vpc/docs/using-routes#canipforward
EnableIpForwarding bool `json:"enableIpForwarding,omitempty"`
// GpuDriverConfig: Optional. Configuration for GPU drivers.
GpuDriverConfig *GPUDriverConfig `json:"gpuDriverConfig,omitempty"`
// MachineType: Optional. The machine type of the VM instance.
// https://cloud.google.com/compute/docs/machine-resource
MachineType string `json:"machineType,omitempty"`
// Metadata: Optional. Custom metadata to apply to this instance.
Metadata map[string]string `json:"metadata,omitempty"`
// NetworkInterfaces: Optional. The network interfaces for the VM. Supports
// only one interface.
NetworkInterfaces []*NetworkInterface `json:"networkInterfaces,omitempty"`
// ServiceAccounts: Optional. The service account that serves as an identity
// for the VM instance. Currently supports only one service account.
ServiceAccounts []*ServiceAccount `json:"serviceAccounts,omitempty"`
// ShieldedInstanceConfig: Optional. Shielded VM configuration. Images using
// supported Shielded VM features
// (https://cloud.google.com/compute/docs/instances/modifying-shielded-vm).
ShieldedInstanceConfig *ShieldedInstanceConfig `json:"shieldedInstanceConfig,omitempty"`
// Tags: Optional. The Compute Engine tags to add to runtime (see Tagging
// instances
// (https://cloud.google.com/compute/docs/label-or-tag-resources#tags)).
Tags []string `json:"tags,omitempty"`
// VmImage: Optional. Use a Compute Engine VM image to start the notebook
// instance.
VmImage *VmImage `json:"vmImage,omitempty"`
// ForceSendFields is a list of field names (e.g. "AcceleratorConfigs") 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. "AcceleratorConfigs") 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 GceSetup) MarshalJSON() ([]byte, error) {
type NoMethod GceSetup
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ImageRelease: ConfigImage represents an image release available to create a
// WbI
type ImageRelease struct {
// ImageName: Output only. The name of the image of the form
// workbench-instances-vYYYYmmdd--
ImageName string `json:"imageName,omitempty"`
// ReleaseName: Output only. The release of the image of the form m123
ReleaseName string `json:"releaseName,omitempty"`
// ForceSendFields is a list of field names (e.g. "ImageName") 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. "ImageName") 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 ImageRelease) MarshalJSON() ([]byte, error) {
type NoMethod ImageRelease
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// Instance: The definition of a notebook instance.
type Instance struct {
// CreateTime: Output only. Instance creation time.
CreateTime string `json:"createTime,omitempty"`
// Creator: Output only. Email address of entity that sent original
// CreateInstance request.
Creator string `json:"creator,omitempty"`
// DisableProxyAccess: Optional. If true, the notebook instance will not
// register with the proxy.
DisableProxyAccess bool `json:"disableProxyAccess,omitempty"`
// GceSetup: Optional. Compute Engine setup for the notebook. Uses
// notebook-defined fields.
GceSetup *GceSetup `json:"gceSetup,omitempty"`
// HealthInfo: Output only. Additional information about instance health.
// Example: healthInfo": { "docker_proxy_agent_status": "1", "docker_status":
// "1", "jupyterlab_api_status": "-1", "jupyterlab_status": "-1", "updated":
// "2020-10-18 09:40:03.573409" }
HealthInfo map[string]string `json:"healthInfo,omitempty"`
// HealthState: Output only. Instance health_state.
//
// Possible values:
// "HEALTH_STATE_UNSPECIFIED" - The instance substate is unknown.
// "HEALTHY" - The instance is known to be in an healthy state (for example,
// critical daemons are running) Applies to ACTIVE state.
// "UNHEALTHY" - The instance is known to be in an unhealthy state (for
// example, critical daemons are not running) Applies to ACTIVE state.
// "AGENT_NOT_INSTALLED" - The instance has not installed health monitoring
// agent. Applies to ACTIVE state.
// "AGENT_NOT_RUNNING" - The instance health monitoring agent is not running.
// Applies to ACTIVE state.
HealthState string `json:"healthState,omitempty"`
// Id: Output only. Unique ID of the resource.
Id string `json:"id,omitempty"`
// InstanceOwners: Optional. Input only. The owner of this instance after
// creation. Format: `alias@example.com` Currently supports one owner only. If
// not specified, all of the service account users of your VM instance's
// service account can use the instance.
InstanceOwners []string `json:"instanceOwners,omitempty"`
// Labels: Optional. Labels to apply to this instance. These can be later
// modified by the UpdateInstance method.
Labels map[string]string `json:"labels,omitempty"`
// Name: Output only. The name of this notebook instance. Format:
// `projects/{project_id}/locations/{location}/instances/{instance_id}`
Name string `json:"name,omitempty"`
// ProxyUri: Output only. The proxy endpoint that is used to access the Jupyter
// notebook.
ProxyUri string `json:"proxyUri,omitempty"`
// SatisfiesPzi: Output only. Reserved for future use for Zone Isolation.
SatisfiesPzi bool `json:"satisfiesPzi,omitempty"`
// SatisfiesPzs: Output only. Reserved for future use for Zone Separation.
SatisfiesPzs bool `json:"satisfiesPzs,omitempty"`
// State: Output only. The state of this instance.
//
// Possible values:
// "STATE_UNSPECIFIED" - State is not specified.
// "STARTING" - The control logic is starting the instance.
// "PROVISIONING" - The control logic is installing required frameworks and
// registering the instance with notebook proxy
// "ACTIVE" - The instance is running.
// "STOPPING" - The control logic is stopping the instance.
// "STOPPED" - The instance is stopped.
// "DELETED" - The instance is deleted.
// "UPGRADING" - The instance is upgrading.
// "INITIALIZING" - The instance is being created.
// "SUSPENDING" - The instance is suspending.
// "SUSPENDED" - The instance is suspended.
State string `json:"state,omitempty"`
// ThirdPartyProxyUrl: Output only. The workforce pools proxy endpoint that is
// used to access the Jupyter notebook.
ThirdPartyProxyUrl string `json:"thirdPartyProxyUrl,omitempty"`
// UpdateTime: Output only. Instance update time.
UpdateTime string `json:"updateTime,omitempty"`
// UpgradeHistory: Output only. The upgrade history of this instance.
UpgradeHistory []*UpgradeHistoryEntry `json:"upgradeHistory,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "CreateTime") 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. "CreateTime") 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 Instance) MarshalJSON() ([]byte, error) {
type NoMethod Instance
return gensupport.MarshalJSON(NoMethod(s), s.ForceSendFields, s.NullFields)
}
// ListInstancesResponse: Response for listing notebook instances.
type ListInstancesResponse struct {
// Instances: A list of returned instances.
Instances []*Instance `json:"instances,omitempty"`
// NextPageToken: Page token that can be used to continue listing from the last
// result in the next list call.
NextPageToken string `json:"nextPageToken,omitempty"`
// Unreachable: Locations that could not be reached. For example,
// ['us-west1-a', 'us-central1-b']. A ListInstancesResponse will only contain
// either instances or unreachables,
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. "Instances") 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. "Instances") 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 ListInstancesResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListInstancesResponse
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.