-
Notifications
You must be signed in to change notification settings - Fork 303
/
Copy pathgen.go
4198 lines (3965 loc) · 181 KB
/
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 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// This file was generated by "./hack/update-codegen.sh". Do not edit directly.
// directly.
package composite
import (
"fmt"
cloudprovider "github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud"
"github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/filter"
"github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta"
computealpha "google.golang.org/api/compute/v0.alpha"
computebeta "google.golang.org/api/compute/v0.beta"
compute "google.golang.org/api/compute/v1"
"google.golang.org/api/googleapi"
compositemetrics "k8s.io/ingress-gce/pkg/composite/metrics"
"k8s.io/klog"
"k8s.io/legacy-cloud-providers/gce"
)
// AuthenticationPolicy is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type AuthenticationPolicy struct {
// List of authentication methods that can be used for origin
// authentication. Similar to peers, these will be evaluated in order
// the first valid one will be used to set origin identity. If none of
// these methods pass, the request will be rejected with authentication
// failed error (401). Leave the list empty if origin authentication is
// not required.
Origins []*OriginAuthenticationMethod `json:"origins,omitempty"`
// List of authentication methods that can be used for peer
// authentication. They will be evaluated in order the first valid one
// will be used to set peer identity. If none of these methods pass, the
// request will be rejected with authentication failed error (401).
// Leave the list empty if peer authentication is not required.
Peers []*PeerAuthenticationMethod `json:"peers,omitempty"`
// Define whether peer or origin identity should be used for principal.
// Default value is USE_PEER. If peer (or origin) identity is not
// available, either because peer/origin authentication is not defined,
// or failed, principal will be left unset. In other words, binding rule
// does not affect the decision to accept or reject request. This field
// can be set to one of the following: USE_PEER: Principal will be set
// to the identity from peer authentication. USE_ORIGIN: Principal will
// be set to the identity from origin authentication.
PrincipalBinding string `json:"principalBinding,omitempty"`
// Configures the mechanism to obtain server-side security certificates
// and identity information.
ServerTlsContext *TlsContext `json:"serverTlsContext,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// AuthorizationConfig is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type AuthorizationConfig struct {
// List of RbacPolicies.
Policies []*RbacPolicy `json:"policies,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// Backend is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type Backend struct {
// Specifies the balancing mode for this backend. For global HTTP(S) or
// TCP/SSL load balancing, the default is UTILIZATION. Valid values are
// UTILIZATION, RATE (for HTTP(S)) and CONNECTION (for TCP/SSL).
//
// For Internal Load Balancing, the default and only supported mode is
// CONNECTION.
BalancingMode string `json:"balancingMode,omitempty"`
// A multiplier applied to the group's maximum servicing capacity (based
// on UTILIZATION, RATE or CONNECTION). Default value is 1, which means
// the group will serve up to 100% of its configured capacity (depending
// on balancingMode). A setting of 0 means the group is completely
// drained, offering 0% of its available Capacity. Valid range is
// [0.0,1.0].
//
// This cannot be used for internal load balancing.
CapacityScaler float64 `json:"capacityScaler,omitempty"`
// An optional description of this resource. Provide this property when
// you create the resource.
Description string `json:"description,omitempty"`
// This field designates whether this is a failover backend. More than
// one failover backend can be configured for a given BackendService.
Failover bool `json:"failover,omitempty"`
// The fully-qualified URL of an Instance Group or Network Endpoint
// Group resource. In case of instance group this defines the list of
// instances that serve traffic. Member virtual machine instances from
// each instance group must live in the same zone as the instance group
// itself. No two backends in a backend service are allowed to use same
// Instance Group resource.
//
// For Network Endpoint Groups this defines list of endpoints. All
// endpoints of Network Endpoint Group must be hosted on instances
// located in the same zone as the Network Endpoint Group.
//
// Backend service can not contain mix of Instance Group and Network
// Endpoint Group backends.
//
// Note that you must specify an Instance Group or Network Endpoint
// Group resource using the fully-qualified URL, rather than a partial
// URL.
//
// When the BackendService has load balancing scheme INTERNAL, the
// instance group must be within the same region as the BackendService.
// Network Endpoint Groups are not supported for INTERNAL load balancing
// scheme.
Group string `json:"group,omitempty"`
// The max number of simultaneous connections for the group. Can be used
// with either CONNECTION or UTILIZATION balancing modes. For CONNECTION
// mode, either maxConnections or maxConnectionsPerInstance must be
// set.
//
// This cannot be used for internal load balancing.
MaxConnections int64 `json:"maxConnections,omitempty"`
// The max number of simultaneous connections that a single backend
// network endpoint can handle. This is used to calculate the capacity
// of the group. Can be used in either CONNECTION or UTILIZATION
// balancing modes. For CONNECTION mode, either maxConnections or
// maxConnectionsPerEndpoint must be set.
//
// This cannot be used for internal load balancing.
MaxConnectionsPerEndpoint int64 `json:"maxConnectionsPerEndpoint,omitempty"`
// The max number of simultaneous connections that a single backend
// instance can handle. This is used to calculate the capacity of the
// group. Can be used in either CONNECTION or UTILIZATION balancing
// modes. For CONNECTION mode, either maxConnections or
// maxConnectionsPerInstance must be set.
//
// This cannot be used for internal load balancing.
MaxConnectionsPerInstance int64 `json:"maxConnectionsPerInstance,omitempty"`
// The max requests per second (RPS) of the group. Can be used with
// either RATE or UTILIZATION balancing modes, but required if RATE
// mode. For RATE mode, either maxRate or maxRatePerInstance must be
// set.
//
// This cannot be used for internal load balancing.
MaxRate int64 `json:"maxRate,omitempty"`
// The max requests per second (RPS) that a single backend network
// endpoint can handle. This is used to calculate the capacity of the
// group. Can be used in either balancing mode. For RATE mode, either
// maxRate or maxRatePerEndpoint must be set.
//
// This cannot be used for internal load balancing.
MaxRatePerEndpoint float64 `json:"maxRatePerEndpoint,omitempty"`
// The max requests per second (RPS) that a single backend instance can
// handle. This is used to calculate the capacity of the group. Can be
// used in either balancing mode. For RATE mode, either maxRate or
// maxRatePerInstance must be set.
//
// This cannot be used for internal load balancing.
MaxRatePerInstance float64 `json:"maxRatePerInstance,omitempty"`
// Used when balancingMode is UTILIZATION. This ratio defines the CPU
// utilization target for the group. The default is 0.8. Valid range is
// [0.0, 1.0].
//
// This cannot be used for internal load balancing.
MaxUtilization float64 `json:"maxUtilization,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// BackendService is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type BackendService struct {
// Version keeps track of the intended compute version for this BackendService.
// Note that the compute API's do not contain this field. It is for our
// own bookkeeping purposes.
Version meta.Version `json:"-"`
// Scope keeps track of the intended type of the service (e.g. Global)
// This is also an internal field purely for bookkeeping purposes
Scope meta.KeyType `json:"-"`
// Lifetime of cookies in seconds if session_affinity is
// GENERATED_COOKIE. If set to 0, the cookie is non-persistent and lasts
// only until the end of the browser session (or equivalent). The
// maximum allowed value for TTL is one day.
//
// When the load balancing scheme is INTERNAL, this field is not used.
AffinityCookieTtlSec int64 `json:"affinityCookieTtlSec,omitempty"`
// Directs request to an App Engine app. cloudFunctionBackend and
// backends[] must be empty if this is set.
AppEngineBackend *BackendServiceAppEngineBackend `json:"appEngineBackend,omitempty"`
// The list of backends that serve this BackendService.
Backends []*Backend `json:"backends,omitempty"`
// Cloud CDN configuration for this BackendService.
CdnPolicy *BackendServiceCdnPolicy `json:"cdnPolicy,omitempty"`
// Settings controlling the volume of connections to a backend
// service.
//
// This field is applicable to either:
// - A regional backend service with the service_protocol set to HTTP,
// HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED.
//
// - A global backend service with the load_balancing_scheme set to
// INTERNAL_SELF_MANAGED.
CircuitBreakers *CircuitBreakers `json:"circuitBreakers,omitempty"`
// Directs request to a cloud function. appEngineBackend and backends[]
// must be empty if this is set.
CloudFunctionBackend *BackendServiceCloudFunctionBackend `json:"cloudFunctionBackend,omitempty"`
ConnectionDraining *ConnectionDraining `json:"connectionDraining,omitempty"`
// Consistent Hash-based load balancing can be used to provide soft
// session affinity based on HTTP headers, cookies or other properties.
// This load balancing policy is applicable only for HTTP connections.
// The affinity to a particular destination host will be lost when one
// or more hosts are added/removed from the destination service. This
// field specifies parameters that control consistent hashing. This
// field is only applicable when localityLbPolicy is set to MAGLEV or
// RING_HASH.
//
// This field is applicable to either:
// - A regional backend service with the service_protocol set to HTTP,
// HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED.
//
// - A global backend service with the load_balancing_scheme set to
// INTERNAL_SELF_MANAGED.
ConsistentHash *ConsistentHashLoadBalancerSettings `json:"consistentHash,omitempty"`
// [Output Only] Creation timestamp in RFC3339 text format.
CreationTimestamp string `json:"creationTimestamp,omitempty"`
// Headers that the HTTP/S load balancer should add to proxied requests.
CustomRequestHeaders []string `json:"customRequestHeaders,omitempty"`
// An optional description of this resource. Provide this property when
// you create the resource.
Description string `json:"description,omitempty"`
// If true, enable Cloud CDN for this BackendService.
//
// When the load balancing scheme is INTERNAL, this field is not used.
EnableCDN bool `json:"enableCDN,omitempty"`
FailoverPolicy *BackendServiceFailoverPolicy `json:"failoverPolicy,omitempty"`
// Fingerprint of this resource. A hash of the contents stored in this
// object. This field is used in optimistic locking. This field will be
// ignored when inserting a BackendService. An up-to-date fingerprint
// must be provided in order to update the BackendService, otherwise the
// request will fail with error 412 conditionNotMet.
//
// To see the latest fingerprint, make a get() request to retrieve a
// BackendService.
Fingerprint string `json:"fingerprint,omitempty"`
// The list of URLs to the HttpHealthCheck or HttpsHealthCheck resource
// for health checking this BackendService. Currently at most one health
// check can be specified, and a health check is required for Compute
// Engine backend services. A health check must not be specified for App
// Engine backend and Cloud Function backend.
//
// For internal load balancing, a URL to a HealthCheck resource must be
// specified instead.
HealthChecks []string `json:"healthChecks,omitempty"`
Iap *BackendServiceIAP `json:"iap,omitempty"`
// [Output Only] The unique identifier for the resource. This identifier
// is defined by the server.
Id uint64 `json:"id,omitempty,string"`
// [Output Only] Type of resource. Always compute#backendService for
// backend services.
Kind string `json:"kind,omitempty"`
// Indicates whether the backend service will be used with internal or
// external load balancing. A backend service created for one type of
// load balancing cannot be used with the other. Possible values are
// INTERNAL and EXTERNAL.
LoadBalancingScheme string `json:"loadBalancingScheme,omitempty"`
// The load balancing algorithm used within the scope of the locality.
// The possible values are:
// - ROUND_ROBIN: This is a simple policy in which each healthy backend
// is selected in round robin order. This is the default.
// - LEAST_REQUEST: An O(1) algorithm which selects two random healthy
// hosts and picks the host which has fewer active requests.
// - RING_HASH: The ring/modulo hash load balancer implements consistent
// hashing to backends. The algorithm has the property that the
// addition/removal of a host from a set of N hosts only affects 1/N of
// the requests.
// - RANDOM: The load balancer selects a random healthy host.
// - ORIGINAL_DESTINATION: Backend host is selected based on the client
// connection metadata, i.e., connections are opened to the same address
// as the destination address of the incoming connection before the
// connection was redirected to the load balancer.
// - MAGLEV: used as a drop in replacement for the ring hash load
// balancer. Maglev is not as stable as ring hash but has faster table
// lookup build times and host selection times. For more information
// about Maglev, refer to https://ai.google/research/pubs/pub44824
//
//
// This field is applicable to either:
// - A regional backend service with the service_protocol set to HTTP,
// HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED.
//
// - A global backend service with the load_balancing_scheme set to
// INTERNAL_SELF_MANAGED.
LocalityLbPolicy string `json:"localityLbPolicy,omitempty"`
// This field denotes the logging options for the load balancer traffic
// served by this backend service. If logging is enabled, logs will be
// exported to Stackdriver.
LogConfig *BackendServiceLogConfig `json:"logConfig,omitempty"`
// Name of the resource. Provided by the client when the resource is
// created. The name must be 1-63 characters long, and comply with
// RFC1035. Specifically, the name must be 1-63 characters long and
// match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means
// the first character must be a lowercase letter, and all following
// characters must be a dash, lowercase letter, or digit, except the
// last character, which cannot be a dash.
Name string `json:"name,omitempty"`
// Settings controlling eviction of unhealthy hosts from the load
// balancing pool. This field is applicable to either:
// - A regional backend service with the service_protocol set to HTTP,
// HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED.
//
// - A global backend service with the load_balancing_scheme set to
// INTERNAL_SELF_MANAGED.
OutlierDetection *OutlierDetection `json:"outlierDetection,omitempty"`
// Deprecated in favor of portName. The TCP port to connect on the
// backend. The default value is 80.
//
// This cannot be used for internal load balancing.
Port int64 `json:"port,omitempty"`
// Name of backend port. The same name should appear in the instance
// groups referenced by this service. Required when the load balancing
// scheme is EXTERNAL.
//
// When the load balancing scheme is INTERNAL, this field is not used.
PortName string `json:"portName,omitempty"`
// The protocol this BackendService uses to communicate with
// backends.
//
// Possible values are HTTP, HTTPS, TCP, and SSL. The default is
// HTTP.
//
// For internal load balancing, the possible values are TCP and UDP, and
// the default is TCP.
Protocol string `json:"protocol,omitempty"`
// [Output Only] URL of the region where the regional backend service
// resides. This field is not applicable to global backend services. You
// must specify this field as part of the HTTP request URL. It is not
// settable as a field in the request body.
Region string `json:"region,omitempty"`
// [Output Only] The resource URL for the security policy associated
// with this backend service.
SecurityPolicy string `json:"securityPolicy,omitempty"`
// This field specifies the security policy that applies to this backend
// service. This field is applicable to either:
// - A regional backend service with the service_protocol set to HTTP,
// HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED.
//
// - A global backend service with the load_balancing_scheme set to
// INTERNAL_SELF_MANAGED.
SecuritySettings *SecuritySettings `json:"securitySettings,omitempty"`
// [Output Only] Server-defined URL for the resource.
SelfLink string `json:"selfLink,omitempty"`
// [Output Only] Server-defined URL for this resource with the resource
// id.
SelfLinkWithId string `json:"selfLinkWithId,omitempty"`
// Type of session affinity to use. The default is NONE.
//
// When the load balancing scheme is EXTERNAL, can be NONE, CLIENT_IP,
// or GENERATED_COOKIE.
//
// When the load balancing scheme is INTERNAL, can be NONE, CLIENT_IP,
// CLIENT_IP_PROTO, or CLIENT_IP_PORT_PROTO.
//
// When the protocol is UDP, this field is not used.
SessionAffinity string `json:"sessionAffinity,omitempty"`
// How many seconds to wait for the backend before considering it a
// failed request. Default is 30 seconds.
TimeoutSec int64 `json:"timeoutSec,omitempty"`
googleapi.ServerResponse `json:"-"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// BackendServiceAppEngineBackend is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type BackendServiceAppEngineBackend struct {
// Optional. App Engine app service name.
AppEngineService string `json:"appEngineService,omitempty"`
// Required. Project ID of the project hosting the app. This is the
// project ID of this project. Reference to another project is not
// allowed.
TargetProject string `json:"targetProject,omitempty"`
// Optional. Version of App Engine app service. When empty, App Engine
// will do its normal traffic split.
Version string `json:"version,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// BackendServiceCdnPolicy is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type BackendServiceCdnPolicy struct {
// The CacheKeyPolicy for this CdnPolicy.
CacheKeyPolicy *CacheKeyPolicy `json:"cacheKeyPolicy,omitempty"`
// Maximum number of seconds the response to a signed URL request will
// be considered fresh. After this time period, the response will be
// revalidated before being served. Defaults to 1hr (3600s). When
// serving responses to signed URL requests, Cloud CDN will internally
// behave as though all responses from this backend had a
// "Cache-Control: public, max-age=[TTL]" header, regardless of any
// existing Cache-Control header. The actual headers served in responses
// will not be altered.
SignedUrlCacheMaxAgeSec int64 `json:"signedUrlCacheMaxAgeSec,omitempty,string"`
// [Output Only] Names of the keys for signing request URLs.
SignedUrlKeyNames []string `json:"signedUrlKeyNames,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// BackendServiceCloudFunctionBackend is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type BackendServiceCloudFunctionBackend struct {
// Required. A cloud function name. Special value ?*? represents all
// cloud functions in the project.
FunctionName string `json:"functionName,omitempty"`
// Required. Project ID of the project hosting the cloud function.
TargetProject string `json:"targetProject,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// BackendServiceFailoverPolicy is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type BackendServiceFailoverPolicy struct {
// On failover or failback, this field indicates whether connection
// drain will be honored. Setting this to true has the following effect:
// connections to the old active pool are not drained. Connections to
// the new active pool use the timeout of 10 min (currently fixed).
// Setting to false has the following effect: both old and new
// connections will have a drain timeout of 10 min.
//
// This can be set to true only if the protocol is TCP.
//
// The default is false.
DisableConnectionDrainOnFailover bool `json:"disableConnectionDrainOnFailover,omitempty"`
// This option is used only when no healthy VMs are detected in the
// primary and backup instance groups. When set to true, traffic is
// dropped. When set to false, new connections are sent across all VMs
// in the primary group.
//
// The default is false.
DropTrafficIfUnhealthy bool `json:"dropTrafficIfUnhealthy,omitempty"`
// The value of the field must be in [0, 1]. If the ratio of the healthy
// VMs in the primary backend is at or below this number, traffic
// arriving at the load-balanced IP will be directed to the failover
// backend.
//
// In case where 'failoverRatio' is not set or all the VMs in the backup
// backend are unhealthy, the traffic will be directed back to the
// primary backend in the "force" mode, where traffic will be spread to
// the healthy VMs with the best effort, or to all VMs when no VM is
// healthy.
//
// This field is only used with l4 load balancing.
FailoverRatio float64 `json:"failoverRatio,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// BackendServiceIAP is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type BackendServiceIAP struct {
Enabled bool `json:"enabled,omitempty"`
Oauth2ClientId string `json:"oauth2ClientId,omitempty"`
// [Input Only] OAuth client info required to generate client id to be
// used for IAP.
Oauth2ClientInfo *BackendServiceIAPOAuth2ClientInfo `json:"oauth2ClientInfo,omitempty"`
Oauth2ClientSecret string `json:"oauth2ClientSecret,omitempty"`
// [Output Only] SHA256 hash value for the field oauth2_client_secret
// above.
Oauth2ClientSecretSha256 string `json:"oauth2ClientSecretSha256,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// BackendServiceIAPOAuth2ClientInfo is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type BackendServiceIAPOAuth2ClientInfo struct {
// Application name to be used in OAuth consent screen.
ApplicationName string `json:"applicationName,omitempty"`
// Name of the client to be generated. Optional - If not provided, the
// name will be autogenerated by the backend.
ClientName string `json:"clientName,omitempty"`
// Developer's information to be used in OAuth consent screen.
DeveloperEmailAddress string `json:"developerEmailAddress,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// BackendServiceLogConfig is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type BackendServiceLogConfig struct {
// This field denotes whether to enable logging for the load balancer
// traffic served by this backend service.
Enable bool `json:"enable,omitempty"`
// This field can only be specified if logging is enabled for this
// backend service. The value of the field must be in [0, 1]. This
// configures the sampling rate of requests to the load balancer where
// 1.0 means all logged requests are reported and 0.0 means no logged
// requests are reported. The default value is 1.0.
SampleRate float64 `json:"sampleRate,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// CacheKeyPolicy is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type CacheKeyPolicy struct {
// If true, requests to different hosts will be cached separately.
IncludeHost bool `json:"includeHost,omitempty"`
// If true, http and https requests will be cached separately.
IncludeProtocol bool `json:"includeProtocol,omitempty"`
// If true, include query string parameters in the cache key according
// to query_string_whitelist and query_string_blacklist. If neither is
// set, the entire query string will be included. If false, the query
// string will be excluded from the cache key entirely.
IncludeQueryString bool `json:"includeQueryString,omitempty"`
// Names of query string parameters to exclude in cache keys. All other
// parameters will be included. Either specify query_string_whitelist or
// query_string_blacklist, not both. '&' and '=' will be percent encoded
// and not treated as delimiters.
QueryStringBlacklist []string `json:"queryStringBlacklist,omitempty"`
// Names of query string parameters to include in cache keys. All other
// parameters will be excluded. Either specify query_string_whitelist or
// query_string_blacklist, not both. '&' and '=' will be percent encoded
// and not treated as delimiters.
QueryStringWhitelist []string `json:"queryStringWhitelist,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// CallCredentials is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type CallCredentials struct {
// The access token that is used as call credential for the SDS server.
// This field is used only if callCredentialType is ACCESS_TOKEN.
AccessToken string `json:"accessToken,omitempty"`
// The type of call credentials to use for GRPC requests to the SDS
// server. This field can be set to one of the following: ACCESS_TOKEN:
// An access token is used as call credentials for the SDS server.
// GCE_VM: The local GCE VM service account credentials are used to
// access the SDS server. JWT_SERVICE_TOKEN: The user provisioned
// service account credentials are used to access the SDS server.
// FROM_PLUGIN: Custom authenticator credentials are used to access the
// SDS server.
CallCredentialType string `json:"callCredentialType,omitempty"`
// Custom authenticator credentials.
FromPlugin *MetadataCredentialsFromPlugin `json:"fromPlugin,omitempty"`
// This service account credentials are used as call credentials for the
// SDS server. This field is used only if callCredentialType is
// JWT_SERVICE_ACCOUNT.
JwtServiceAccount *ServiceAccountJwtAccessCredentials `json:"jwtServiceAccount,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// ChannelCredentials is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type ChannelCredentials struct {
// The call credentials to access the SDS server.
Certificates *TlsCertificatePaths `json:"certificates,omitempty"`
// The channel credentials to access the SDS server. This field can be
// set to one of the following: CERTIFICATES: Use TLS certificates to
// access the SDS server. GCE_VM: Use local GCE VM credentials to access
// the SDS server.
ChannelCredentialType string `json:"channelCredentialType,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// CircuitBreakers is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type CircuitBreakers struct {
// The timeout for new network connections to hosts.
ConnectTimeout *Duration `json:"connectTimeout,omitempty"`
// The maximum number of connections to the backend cluster. If not
// specified, the default is 1024.
MaxConnections int64 `json:"maxConnections,omitempty"`
// The maximum number of pending requests allowed to the backend
// cluster. If not specified, the default is 1024.
MaxPendingRequests int64 `json:"maxPendingRequests,omitempty"`
// The maximum number of parallel requests that allowed to the backend
// cluster. If not specified, the default is 1024.
MaxRequests int64 `json:"maxRequests,omitempty"`
// Maximum requests for a single backend connection. This parameter is
// respected by both the HTTP/1.1 and HTTP/2 implementations. If not
// specified, there is no limit. Setting this parameter to 1 will
// effectively disable keep alive.
MaxRequestsPerConnection int64 `json:"maxRequestsPerConnection,omitempty"`
// The maximum number of parallel retries allowed to the backend
// cluster. If not specified, the default is 3.
MaxRetries int64 `json:"maxRetries,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// ClientTlsSettings is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type ClientTlsSettings struct {
// Configures the mechanism to obtain client-side security certificates
// and identity information. This field is only applicable when mode is
// set to MUTUAL.
ClientTlsContext *TlsContext `json:"clientTlsContext,omitempty"`
// Indicates whether connections to this port should be secured using
// TLS. The value of this field determines how TLS is enforced. This can
// be set to one of the following values: DISABLE: Do not setup a TLS
// connection to the backends. SIMPLE: Originate a TLS connection to the
// backends. MUTUAL: Secure connections to the backends using mutual TLS
// by presenting client certificates for authentication.
Mode string `json:"mode,omitempty"`
// SNI string to present to the server during TLS handshake. This field
// is applicable only when mode is SIMPLE or MUTUAL.
Sni string `json:"sni,omitempty"`
// A list of alternate names to verify the subject identity in the
// certificate.If specified, the proxy will verify that the server
// certificate's subject alt name matches one of the specified values.
// This field is applicable only when mode is SIMPLE or MUTUAL.
SubjectAltNames []string `json:"subjectAltNames,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// ConnectionDraining is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type ConnectionDraining struct {
// Time for which instance will be drained (not accept new connections,
// but still work to finish started).
DrainingTimeoutSec int64 `json:"drainingTimeoutSec,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// ConsistentHashLoadBalancerSettings is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type ConsistentHashLoadBalancerSettings struct {
// Hash is based on HTTP Cookie. This field describes a HTTP cookie that
// will be used as the hash key for the consistent hash load balancer.
// If the cookie is not present, it will be generated. This field is
// applicable if the sessionAffinity is set to HTTP_COOKIE.
HttpCookie *ConsistentHashLoadBalancerSettingsHttpCookie `json:"httpCookie,omitempty"`
// The hash based on the value of the specified header field. This field
// is applicable if the sessionAffinity is set to HEADER_FIELD.
HttpHeaderName string `json:"httpHeaderName,omitempty"`
// The minimum number of virtual nodes to use for the hash ring.
// Defaults to 1024. Larger ring sizes result in more granular load
// distributions. If the number of hosts in the load balancing pool is
// larger than the ring size, each host will be assigned a single
// virtual node.
MinimumRingSize int64 `json:"minimumRingSize,omitempty,string"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// ConsistentHashLoadBalancerSettingsHttpCookie is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type ConsistentHashLoadBalancerSettingsHttpCookie struct {
// Name of the cookie.
Name string `json:"name,omitempty"`
// Path to set for the cookie.
Path string `json:"path,omitempty"`
// Lifetime of the cookie.
Ttl *Duration `json:"ttl,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// CorsPolicy is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type CorsPolicy struct {
// In response to a preflight request, setting this to true indicates
// that the actual request can include user credentials. This translates
// to the Access-Control-Allow-Credentials header.
// Default is false.
AllowCredentials bool `json:"allowCredentials,omitempty"`
// Specifies the content for the Access-Control-Allow-Headers header.
AllowHeaders []string `json:"allowHeaders,omitempty"`
// Specifies the content for the Access-Control-Allow-Methods header.
AllowMethods []string `json:"allowMethods,omitempty"`
// Specifies the regualar expression patterns that match allowed
// origins. For regular expression grammar please see
// en.cppreference.com/w/cpp/regex/ecmascript
// An origin is allowed if it matches either allow_origins or
// allow_origin_regex.
AllowOriginRegexes []string `json:"allowOriginRegexes,omitempty"`
// Specifies the list of origins that will be allowed to do CORS
// requests.
// An origin is allowed if it matches either allow_origins or
// allow_origin_regex.
AllowOrigins []string `json:"allowOrigins,omitempty"`
// If true, specifies the CORS policy is disabled. The default value of
// false, which indicates that the CORS policy is in effect.
Disabled bool `json:"disabled,omitempty"`
// Specifies the content for the Access-Control-Expose-Headers header.
ExposeHeaders []string `json:"exposeHeaders,omitempty"`
// Specifies how long the results of a preflight request can be cached.
// This translates to the content for the Access-Control-Max-Age header.
MaxAge int64 `json:"maxAge,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// Duration is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type Duration struct {
// Span of time that's a fraction of a second at nanosecond resolution.
// Durations less than one second are represented with a 0 `seconds`
// field and a positive `nanos` field. Must be from 0 to 999,999,999
// inclusive.
Nanos int64 `json:"nanos,omitempty"`
// Span of time at a resolution of a second. Must be from 0 to
// 315,576,000,000 inclusive. Note: these bounds are computed from: 60
// sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
Seconds int64 `json:"seconds,omitempty,string"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// ForwardingRule is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type ForwardingRule struct {
// Version keeps track of the intended compute version for this ForwardingRule.
// Note that the compute API's do not contain this field. It is for our
// own bookkeeping purposes.
Version meta.Version `json:"-"`
// Scope keeps track of the intended type of the service (e.g. Global)
// This is also an internal field purely for bookkeeping purposes
Scope meta.KeyType `json:"-"`
// This field is used along with the backend_service field for internal
// load balancing or with the target field for internal TargetInstance.
// This field cannot be used with port or portRange fields.
//
// When the load balancing scheme is INTERNAL and protocol is TCP/UDP,
// specify this field to allow packets addressed to any ports will be
// forwarded to the backends configured with this forwarding rule.
AllPorts bool `json:"allPorts,omitempty"`
// This field is used along with the backend_service field for internal
// load balancing or with the target field for internal TargetInstance.
// If the field is set to TRUE, clients can access ILB from all regions.
// Otherwise only allows access from clients in the same region as the
// internal load balancer.
AllowGlobalAccess bool `json:"allowGlobalAccess,omitempty"`
// This field is only used for INTERNAL load balancing.
//
// For internal load balancing, this field identifies the BackendService
// resource to receive the matched traffic.
BackendService string `json:"backendService,omitempty"`
// [Output Only] Creation timestamp in RFC3339 text format.
CreationTimestamp string `json:"creationTimestamp,omitempty"`
// An optional description of this resource. Provide this property when
// you create the resource.
Description string `json:"description,omitempty"`
// Fingerprint of this resource. A hash of the contents stored in this
// object. This field is used in optimistic locking. This field will be
// ignored when inserting a ForwardingRule. Include the fingerprint in
// patch request to ensure that you do not overwrite changes that were
// applied from another concurrent request.
//
// To see the latest fingerprint, make a get() request to retrieve a
// ForwardingRule.
Fingerprint string `json:"fingerprint,omitempty"`
// The IP address that this forwarding rule is serving on behalf
// of.
//
// Addresses are restricted based on the forwarding rule's load
// balancing scheme (EXTERNAL or INTERNAL) and scope (global or
// regional).
//
// When the load balancing scheme is EXTERNAL, for global forwarding
// rules, the address must be a global IP, and for regional forwarding
// rules, the address must live in the same region as the forwarding
// rule. If this field is empty, an ephemeral IPv4 address from the same
// scope (global or regional) will be assigned. A regional forwarding
// rule supports IPv4 only. A global forwarding rule supports either
// IPv4 or IPv6.
//
// When the load balancing scheme is INTERNAL_SELF_MANAGED, this must be
// a URL reference to an existing Address resource ( internal regional
// static IP address), with a purpose of GCE_END_POINT and address_type
// of INTERNAL.
//
// When the load balancing scheme is INTERNAL, this can only be an RFC
// 1918 IP address belonging to the network/subnet configured for the
// forwarding rule. By default, if this field is empty, an ephemeral
// internal IP address will be automatically allocated from the IP range
// of the subnet or network configured for this forwarding rule.
//
// An address can be specified either by a literal IP address or a URL
// reference to an existing Address resource. The following examples are
// all valid:
// - 100.1.2.3
// -
// https://www.googleapis.com/compute/v1/projects/project/regions/region/addresses/address
// - projects/project/regions/region/addresses/address
// - regions/region/addresses/address
// - global/addresses/address
// - address
IPAddress string `json:"IPAddress,omitempty"`
// The IP protocol to which this rule applies. Valid options are TCP,
// UDP, ESP, AH, SCTP or ICMP.
//
// When the load balancing scheme is INTERNAL, only TCP and UDP are
// valid. When the load balancing scheme is INTERNAL_SELF_MANAGED, only
// TCPis valid.
IPProtocol string `json:"IPProtocol,omitempty"`
// [Output Only] The unique identifier for the resource. This identifier
// is defined by the server.
Id uint64 `json:"id,omitempty,string"`
// The IP Version that will be used by this forwarding rule. Valid
// options are IPV4 or IPV6. This can only be specified for an external
// global forwarding rule.
IpVersion string `json:"ipVersion,omitempty"`
// [Output Only] Type of the resource. Always compute#forwardingRule for
// Forwarding Rule resources.
Kind string `json:"kind,omitempty"`
// A fingerprint for the labels being applied to this resource, which is
// essentially a hash of the labels set used for optimistic locking. The
// fingerprint is initially generated by Compute Engine and changes
// after every request to modify or update labels. You must always
// provide an up-to-date fingerprint hash in order to update or change
// labels, otherwise the request will fail with error 412
// conditionNotMet.
//
// To see the latest fingerprint, make a get() request to retrieve a
// ForwardingRule.
LabelFingerprint string `json:"labelFingerprint,omitempty"`
// Labels to apply to this resource. These can be later modified by the
// setLabels method. Each label key/value pair must comply with RFC1035.
// Label values may be empty.
Labels map[string]string `json:"labels,omitempty"`
// This signifies what the ForwardingRule will be used for and can only
// take the following values: INTERNAL, INTERNAL_SELF_MANAGED, EXTERNAL.
// The value of INTERNAL means that this will be used for Internal
// Network Load Balancing (TCP, UDP). The value of INTERNAL_SELF_MANAGED
// means that this will be used for Internal Global HTTP(S) LB. The
// value of EXTERNAL means that this will be used for External Load
// Balancing (HTTP(S) LB, External TCP/UDP LB, SSL Proxy)
LoadBalancingScheme string `json:"loadBalancingScheme,omitempty"`
// Opaque filter criteria used by Loadbalancer to restrict routing
// configuration to a limited set xDS compliant clients. In their xDS
// requests to Loadbalancer, xDS clients present node metadata. If a
// match takes place, the relevant routing configuration is made
// available to those proxies.
// For each metadataFilter in this list, if its filterMatchCriteria is
// set to MATCH_ANY, at least one of the filterLabels must match the
// corresponding label provided in the metadata. If its
// filterMatchCriteria is set to MATCH_ALL, then all of its filterLabels
// must match with corresponding labels in the provided
// metadata.
// metadataFilters specified here can be overridden by those specified
// in the UrlMap that this ForwardingRule references.
// metadataFilters only applies to Loadbalancers that have their
// loadBalancingScheme set to INTERNAL_SELF_MANAGED.
MetadataFilters []*MetadataFilter `json:"metadataFilters,omitempty"`
// Name of the resource; provided by the client when the resource is
// created. The name must be 1-63 characters long, and comply with
// RFC1035. Specifically, the name must be 1-63 characters long and
// match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means
// the first character must be a lowercase letter, and all following
// characters must be a dash, lowercase letter, or digit, except the
// last character, which cannot be a dash.
Name string `json:"name,omitempty"`
// This field is not used for external load balancing.
//
// For INTERNAL and INTERNAL_SELF_MANAGED load balancing, this field
// identifies the network that the load balanced IP should belong to for
// this Forwarding Rule. If this field is not specified, the default
// network will be used.
Network string `json:"network,omitempty"`
// This signifies the networking tier used for configuring this load
// balancer and can only take the following values: PREMIUM ,
// STANDARD.
//
// For regional ForwardingRule, the valid values are PREMIUM and
// STANDARD. For GlobalForwardingRule, the valid value is PREMIUM.
//
// If this field is not specified, it is assumed to be PREMIUM. If
// IPAddress is specified, this value must be equal to the networkTier
// of the Address.
NetworkTier string `json:"networkTier,omitempty"`
// This field is used along with the target field for TargetHttpProxy,
// TargetHttpsProxy, TargetSslProxy, TargetTcpProxy, TargetVpnGateway,
// TargetPool, TargetInstance.
//
// Applicable only when IPProtocol is TCP, UDP, or SCTP, only packets
// addressed to ports in the specified range will be forwarded to
// target. Forwarding rules with the same [IPAddress, IPProtocol] pair
// must have disjoint port ranges.
//
// Some types of forwarding target have constraints on the acceptable
// ports:
// - TargetHttpProxy: 80, 8080
// - TargetHttpsProxy: 443
// - TargetTcpProxy: 25, 43, 110, 143, 195, 443, 465, 587, 700, 993,
// 995, 1688, 1883, 5222
// - TargetSslProxy: 25, 43, 110, 143, 195, 443, 465, 587, 700, 993,
// 995, 1688, 1883, 5222
// - TargetVpnGateway: 500, 4500
PortRange string `json:"portRange,omitempty"`
// This field is used along with the backend_service field for internal
// load balancing.
//
// When the load balancing scheme is INTERNAL, a list of ports can be
// configured, for example, ['80'], ['8000','9000'] etc. Only packets
// addressed to these ports will be forwarded to the backends configured
// with this forwarding rule.
//
// You may specify a maximum of up to 5 ports.
Ports []string `json:"ports,omitempty"`
// [Output Only] URL of the region where the regional forwarding rule
// resides. This field is not applicable to global forwarding rules. You
// must specify this field as part of the HTTP request URL. It is not
// settable as a field in the request body.
Region string `json:"region,omitempty"`
// [Output Only] Server-defined URL for the resource.
SelfLink string `json:"selfLink,omitempty"`
// [Output Only] Server-defined URL for this resource with the resource
// id.
SelfLinkWithId string `json:"selfLinkWithId,omitempty"`
// An optional prefix to the service name for this Forwarding Rule. If
// specified, will be the first label of the fully qualified service
// name.
//
// The label must be 1-63 characters long, and comply with RFC1035.
// Specifically, the label must be 1-63 characters long and match the
// regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
// character must be a lowercase letter, and all following characters
// must be a dash, lowercase letter, or digit, except the last
// character, which cannot be a dash.
//
// This field is only used for internal load balancing.
ServiceLabel string `json:"serviceLabel,omitempty"`
// [Output Only] The internal fully qualified service name for this
// Forwarding Rule.
//
// This field is only used for internal load balancing.
ServiceName string `json:"serviceName,omitempty"`
// This field is only used for INTERNAL load balancing.
//
// For internal load balancing, this field identifies the subnetwork
// that the load balanced IP should belong to for this Forwarding
// Rule.
//
// If the network specified is in auto subnet mode, this field is
// optional. However, if the network is in custom subnet mode, a
// subnetwork must be specified.
Subnetwork string `json:"subnetwork,omitempty"`
// The URL of the target resource to receive the matched traffic. For
// regional forwarding rules, this target must live in the same region
// as the forwarding rule. For global forwarding rules, this target must
// be a global load balancing resource. The forwarded traffic must be of
// a type appropriate to the target object. For INTERNAL_SELF_MANAGED
// load balancing, only HTTP and HTTPS targets are valid.
Target string `json:"target,omitempty"`
googleapi.ServerResponse `json:"-"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// GrpcServiceConfig is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type GrpcServiceConfig struct {
// The call credentials to access the SDS server.
CallCredentials *CallCredentials `json:"callCredentials,omitempty"`
// The channel credentials to access the SDS server.
ChannelCredentials *ChannelCredentials `json:"channelCredentials,omitempty"`
// The target URI of the SDS server.
TargetUri string `json:"targetUri,omitempty"`
ForceSendFields []string `json:"-"`
NullFields []string `json:"-"`
}
// HTTP2HealthCheck is a composite type wrapping the Alpha, Beta, and GA methods for its GCE equivalent
type HTTP2HealthCheck struct {
// The value of the host header in the HTTP/2 health check request. If
// left empty (default value), the IP on behalf of which this health
// check is performed will be used.
Host string `json:"host,omitempty"`
// The TCP port number for the health check request. The default value
// is 443. Valid values are 1 through 65535.
Port int64 `json:"port,omitempty"`
// Port name as defined in InstanceGroup#NamedPort#name. If both port
// and port_name are defined, port takes precedence.
PortName string `json:"portName,omitempty"`
// Specifies how port is selected for health checking, can be one of
// following values:
// USE_FIXED_PORT: The port number in
// port
// is used for health checking.
// USE_NAMED_PORT: The
// portName
// is used for health checking.
// USE_SERVING_PORT: For NetworkEndpointGroup, the port specified for
// each network endpoint is used for health checking. For other
// backends, the port or named port specified in the Backend Service is
// used for health checking.
//
//
// If not specified, HTTP2 health check follows behavior specified
// in
// port
// and
// portName
// fields.
PortSpecification string `json:"portSpecification,omitempty"`
// Specifies the type of proxy header to append before sending data to
// the backend, either NONE or PROXY_V1. The default is NONE.
ProxyHeader string `json:"proxyHeader,omitempty"`
// The request path of the HTTP/2 health check request. The default
// value is /.
RequestPath string `json:"requestPath,omitempty"`
// The string to match anywhere in the first 1024 bytes of the response
// body. If left empty (the default value), the status code determines
// health. The response data can only be ASCII.