-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
proximitybeacon-gen.go
4431 lines (4086 loc) · 162 KB
/
proximitybeacon-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 2020 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 proximitybeacon provides access to the Proximity Beacon API.
//
// For product documentation, see: https://developers.google.com/beacons/proximity/
//
// # Creating a client
//
// Usage example:
//
// import "google.golang.org/api/proximitybeacon/v1beta1"
// ...
// ctx := context.Background()
// proximitybeaconService, err := proximitybeacon.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 option.WithAPIKey:
//
// proximitybeaconService, err := proximitybeacon.NewService(ctx, option.WithAPIKey("AIza..."))
//
// To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow), use option.WithTokenSource:
//
// config := &oauth2.Config{...}
// // ...
// token, err := config.Exchange(ctx, ...)
// proximitybeaconService, err := proximitybeacon.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See https://godoc.org/google.golang.org/api/option/ for details on options.
package proximitybeacon // import "google.golang.org/api/proximitybeacon/v1beta1"
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"strings"
googleapi "google.golang.org/api/googleapi"
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
const apiId = "proximitybeacon:v1beta1"
const apiName = "proximitybeacon"
const apiVersion = "v1beta1"
const basePath = "https://proximitybeacon.googleapis.com/"
// OAuth2 scopes used by this API.
const (
// View and modify your beacons
UserlocationBeaconRegistryScope = "https://www.googleapis.com/auth/userlocation.beacon.registry"
)
// NewService creates a new Service.
func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error) {
scopesOption := option.WithScopes(
"https://www.googleapis.com/auth/userlocation.beacon.registry",
)
// NOTE: prepend, so we don't override user-specified scopes.
opts = append([]option.ClientOption{scopesOption}, opts...)
opts = append(opts, internaloption.WithDefaultEndpoint(basePath))
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.Beaconinfo = NewBeaconinfoService(s)
s.Beacons = NewBeaconsService(s)
s.Namespaces = NewNamespacesService(s)
s.V1beta1 = NewV1beta1Service(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
Beaconinfo *BeaconinfoService
Beacons *BeaconsService
Namespaces *NamespacesService
V1beta1 *V1beta1Service
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewBeaconinfoService(s *Service) *BeaconinfoService {
rs := &BeaconinfoService{s: s}
return rs
}
type BeaconinfoService struct {
s *Service
}
func NewBeaconsService(s *Service) *BeaconsService {
rs := &BeaconsService{s: s}
rs.Attachments = NewBeaconsAttachmentsService(s)
rs.Diagnostics = NewBeaconsDiagnosticsService(s)
return rs
}
type BeaconsService struct {
s *Service
Attachments *BeaconsAttachmentsService
Diagnostics *BeaconsDiagnosticsService
}
func NewBeaconsAttachmentsService(s *Service) *BeaconsAttachmentsService {
rs := &BeaconsAttachmentsService{s: s}
return rs
}
type BeaconsAttachmentsService struct {
s *Service
}
func NewBeaconsDiagnosticsService(s *Service) *BeaconsDiagnosticsService {
rs := &BeaconsDiagnosticsService{s: s}
return rs
}
type BeaconsDiagnosticsService struct {
s *Service
}
func NewNamespacesService(s *Service) *NamespacesService {
rs := &NamespacesService{s: s}
return rs
}
type NamespacesService struct {
s *Service
}
func NewV1beta1Service(s *Service) *V1beta1Service {
rs := &V1beta1Service{s: s}
return rs
}
type V1beta1Service struct {
s *Service
}
// AdvertisedId: Defines a unique identifier of a beacon as broadcast by
// the device.
type AdvertisedId struct {
// Id: The actual beacon identifier, as broadcast by the beacon
// hardware. Must
// be
// [base64](http://tools.ietf.org/html/rfc4648#section-4) encoded in
// HTTP
// requests, and will be so encoded (with padding) in responses. The
// base64
// encoding should be of the binary byte-stream and not any textual
// (such as
// hex) representation thereof.
// Required.
Id string `json:"id,omitempty"`
// Type: Specifies the identifier type.
// Required.
//
// Possible values:
// "TYPE_UNSPECIFIED" - Do not use this value.
// "EDDYSTONE" - Eddystone, an open beacon format that supports
// Android and iOS
// devices
// https://github.com/google/eddystone/wiki/Beacon-Specification
// "IBEACON" - Apple iBeacon compatible beacon
// "ALTBEACON" - See http://altbeacon.org and/or
// https://github.com/AltBeacon/spec.
// "EDDYSTONE_EID" - Eddystone Ephemeral ID
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Id") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Id") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AdvertisedId) MarshalJSON() ([]byte, error) {
type NoMethod AdvertisedId
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AttachmentInfo: A subset of attachment information served via
// the
// `beaconinfo.getforobserved` method, used when your users encounter
// your
// beacons.
type AttachmentInfo struct {
// Data: An opaque data container for client-provided data.
Data string `json:"data,omitempty"`
// MaxDistanceMeters: The distance away from the beacon at which this
// attachment should be
// delivered to a mobile app.
//
// Setting this to a value greater than zero indicates that the app
// should
// behave as if the beacon is "seen" when the mobile device is less than
// this
// distance away from the beacon.
//
// Different attachments on the same beacon can have different max
// distances.
//
// Note that even though this value is expressed with fractional
// meter
// precision, real-world behavior is likley to be much less precise than
// one
// meter, due to the nature of current Bluetooth radio
// technology.
//
// Optional. When not set or zero, the attachment should be delivered at
// the
// beacon's outer limit of detection.
MaxDistanceMeters float64 `json:"maxDistanceMeters,omitempty"`
// NamespacedType: Specifies what kind of attachment this is. Tells a
// client how to
// interpret the `data` field. Format is <var>namespace/type</var>,
// for
// example <code>scrupulous-wombat-12345/welcome-message</code>
NamespacedType string `json:"namespacedType,omitempty"`
// ForceSendFields is a list of field names (e.g. "Data") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Data") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AttachmentInfo) MarshalJSON() ([]byte, error) {
type NoMethod AttachmentInfo
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *AttachmentInfo) UnmarshalJSON(data []byte) error {
type NoMethod AttachmentInfo
var s1 struct {
MaxDistanceMeters gensupport.JSONFloat64 `json:"maxDistanceMeters"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.MaxDistanceMeters = float64(s1.MaxDistanceMeters)
return nil
}
// Beacon: Details of a beacon device.
type Beacon struct {
// AdvertisedId: The identifier of a beacon as advertised by it. This
// field must be
// populated when registering. It may be empty when updating a
// beacon
// record because it is ignored in updates.
//
// When registering a beacon that broadcasts Eddystone-EID, this
// field
// should contain a "stable" Eddystone-UID that identifies the beacon
// and
// links it to its attachments. The stable Eddystone-UID is only used
// for
// administering the beacon.
AdvertisedId *AdvertisedId `json:"advertisedId,omitempty"`
// BeaconName: Resource name of this beacon. A beacon name has the
// format
// "beacons/N!beaconId" where the beaconId is the base16 ID broadcast
// by
// the beacon and N is a code for the beacon's type. Possible values
// are
// `3` for Eddystone, `1` for iBeacon, or `5` for AltBeacon.
//
// This field must be left empty when registering. After reading a
// beacon,
// clients can use the name for future operations.
BeaconName string `json:"beaconName,omitempty"`
// Description: Free text used to identify and describe the beacon.
// Maximum length 140
// characters.
// Optional.
Description string `json:"description,omitempty"`
// EphemeralIdRegistration: Write-only registration parameters for
// beacons using Eddystone-EID
// (remotely resolved ephemeral ID) format. This information will not
// be
// populated in API responses. When submitting this data, the
// `advertised_id`
// field must contain an ID of type Eddystone-UID. Any other ID type
// will
// result in an error.
EphemeralIdRegistration *EphemeralIdRegistration `json:"ephemeralIdRegistration,omitempty"`
// ExpectedStability: Expected location stability. This is set when the
// beacon is registered or
// updated, not automatically detected in any way.
// Optional.
//
// Possible values:
// "STABILITY_UNSPECIFIED" - Do not use this value.
// "STABLE" - Not expected to move, for example a store's front door.
// "PORTABLE" - Usually stable but may move rarely, usually within a
// single place,
// for example a store display.
// "MOBILE" - Moves frequently, for example a personal item or food
// truck.
// "ROVING" - Moves continuously in service, for example a bus or
// train.
ExpectedStability string `json:"expectedStability,omitempty"`
// IndoorLevel: The indoor level information for this beacon, if known.
// As returned by the
// Google Maps API.
// Optional.
IndoorLevel *IndoorLevel `json:"indoorLevel,omitempty"`
// LatLng: The location of the beacon, expressed as a latitude and
// longitude pair.
// This location is given when the beacon is registered or updated. It
// does
// not necessarily indicate the actual current location of the
// beacon.
// Optional.
LatLng *LatLng `json:"latLng,omitempty"`
// PlaceId: The [Google Places API](/places/place-id) Place ID of the
// place where
// the beacon is deployed. This is given when the beacon is registered
// or
// updated, not automatically detected in any way.
// Optional.
PlaceId string `json:"placeId,omitempty"`
// Properties: Properties of the beacon device, for example battery type
// or firmware
// version.
// Optional.
Properties map[string]string `json:"properties,omitempty"`
// ProvisioningKey: Some beacons may require a user to provide an
// authorization key before
// changing any of its configuration (e.g. broadcast frames, transmit
// power).
// This field provides a place to store and control access to that
// key.
// This field is populated in responses to `GET
// /v1beta1/beacons/3!beaconId`
// from users with write access to the given beacon. That is to say: If
// the
// user is authorized to write the beacon's confidential data in the
// service,
// the service considers them authorized to configure the beacon.
// Note
// that this key grants nothing on the service, only on the beacon
// itself.
ProvisioningKey string `json:"provisioningKey,omitempty"`
// Status: Current status of the beacon.
// Required.
//
// Possible values:
// "STATUS_UNSPECIFIED" - Do not use this value.
// "ACTIVE" - The "normal" in-use state of a beacon.
// "DECOMMISSIONED" - Beacon should no longer be used for any purpose.
// This is irreversible.
// "INACTIVE" - The beacon should not be visible to mobile devices.
// This is reversible.
Status string `json:"status,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "AdvertisedId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AdvertisedId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Beacon) MarshalJSON() ([]byte, error) {
type NoMethod Beacon
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BeaconAttachment: Project-specific data associated with a beacon.
type BeaconAttachment struct {
// AttachmentName: Resource name of this attachment. Attachment names
// have the
// format:
// <code>beacons/<var>beacon_id</var>/attachments/<var>attachment
// _id</var></code>.
// Leave this empty on creation.
AttachmentName string `json:"attachmentName,omitempty"`
// CreationTimeMs: The UTC time when this attachment was created, in
// milliseconds since the
// UNIX epoch.
CreationTimeMs string `json:"creationTimeMs,omitempty"`
// Data: An opaque data container for client-provided data. Must
// be
// [base64](http://tools.ietf.org/html/rfc4648#section-4) encoded in
// HTTP
// requests, and will be so encoded (with padding) in
// responses.
// Required.
Data string `json:"data,omitempty"`
// MaxDistanceMeters: The distance away from the beacon at which this
// attachment should be
// delivered to a mobile app.
//
// Setting this to a value greater than zero indicates that the app
// should
// behave as if the beacon is "seen" when the mobile device is less than
// this
// distance away from the beacon.
//
// Different attachments on the same beacon can have different max
// distances.
//
// Note that even though this value is expressed with fractional
// meter
// precision, real-world behavior is likley to be much less precise than
// one
// meter, due to the nature of current Bluetooth radio
// technology.
//
// Optional. When not set or zero, the attachment should be delivered at
// the
// beacon's outer limit of detection.
//
// Negative values are invalid and return an error.
MaxDistanceMeters float64 `json:"maxDistanceMeters,omitempty"`
// NamespacedType: Specifies what kind of attachment this is. Tells a
// client how to
// interpret the `data` field. Format is <var>namespace/type</var>.
// Namespace
// provides type separation between clients. Type describes the type
// of
// `data`, for use by the client when parsing the `data`
// field.
// Required.
NamespacedType string `json:"namespacedType,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "AttachmentName") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AttachmentName") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *BeaconAttachment) MarshalJSON() ([]byte, error) {
type NoMethod BeaconAttachment
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *BeaconAttachment) UnmarshalJSON(data []byte) error {
type NoMethod BeaconAttachment
var s1 struct {
MaxDistanceMeters gensupport.JSONFloat64 `json:"maxDistanceMeters"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.MaxDistanceMeters = float64(s1.MaxDistanceMeters)
return nil
}
// BeaconInfo: A subset of beacon information served via the
// `beaconinfo.getforobserved`
// method, which you call when users of your app encounter your beacons.
type BeaconInfo struct {
// AdvertisedId: The ID advertised by the beacon.
AdvertisedId *AdvertisedId `json:"advertisedId,omitempty"`
// Attachments: Attachments matching the type(s) requested.
// May be empty if no attachment types were requested.
Attachments []*AttachmentInfo `json:"attachments,omitempty"`
// BeaconName: The name under which the beacon is registered.
BeaconName string `json:"beaconName,omitempty"`
// ForceSendFields is a list of field names (e.g. "AdvertisedId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AdvertisedId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BeaconInfo) MarshalJSON() ([]byte, error) {
type NoMethod BeaconInfo
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Date: Represents a whole or partial calendar date, e.g. a birthday.
// The time of day
// and time zone are either specified elsewhere or are not significant.
// The date
// is relative to the Proleptic Gregorian Calendar. This can
// represent:
//
// * A full date, with non-zero year, month and day values
// * A month and day value, with a zero year, e.g. an anniversary
// * A year on its own, with zero month and day values
// * A year and month value, with a zero day, e.g. a credit card
// expiration date
//
// Related types are google.type.TimeOfDay and
// `google.protobuf.Timestamp`.
type Date struct {
// Day: Day of month. Must be from 1 to 31 and valid for the year and
// month, or 0
// if specifying a year by itself or a year and month where the day is
// not
// significant.
Day int64 `json:"day,omitempty"`
// Month: Month of year. Must be from 1 to 12, or 0 if specifying a year
// without a
// month and day.
Month int64 `json:"month,omitempty"`
// Year: Year of date. Must be from 1 to 9999, or 0 if specifying a date
// without
// a year.
Year int64 `json:"year,omitempty"`
// ForceSendFields is a list of field names (e.g. "Day") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Day") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Date) MarshalJSON() ([]byte, error) {
type NoMethod Date
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteAttachmentsResponse: Response for a request to delete
// attachments.
type DeleteAttachmentsResponse struct {
// NumDeleted: The number of attachments that were deleted.
NumDeleted int64 `json:"numDeleted,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "NumDeleted") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "NumDeleted") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteAttachmentsResponse) MarshalJSON() ([]byte, error) {
type NoMethod DeleteAttachmentsResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Diagnostics: Diagnostics for a single beacon.
type Diagnostics struct {
// Alerts: An unordered list of Alerts that the beacon has.
//
// Possible values:
// "ALERT_UNSPECIFIED" - Invalid value. Should never appear.
// "WRONG_LOCATION" - The beacon has been reported far from its
// expected location (the beacon's
// lat_lng field if populated, otherwise, if the beacon's place_id field
// is
// present, the center of that place). This may indicate that the beacon
// has
// been moved. This signal is not 100% accurate, but indicates that
// further
// investigation is worthwhile.
// "LOW_BATTERY" - The battery level for the beacon is low enough
// that, given the beacon's
// current use, its battery will run out with in the next 60 days.
// This
// indicates that the battery should be replaced soon.
// "LOW_ACTIVITY" - The beacon has been reported at a very low rate or
// not at all. This may
// indicate that the beacon is broken or just that no one has gone near
// the
// beacon in recent days. If this status appears unexpectedly, the
// beacon
// owner should investigate further.
Alerts []string `json:"alerts,omitempty"`
// BeaconName: Resource name of the beacon. For Eddystone-EID beacons,
// this may
// be the beacon's current EID, or the beacon's "stable" Eddystone-UID.
BeaconName string `json:"beaconName,omitempty"`
// EstimatedLowBatteryDate: The date when the battery is expected to be
// low. If the value is missing
// then there is no estimate for when the battery will be low.
// This value is only an estimate, not an exact date.
EstimatedLowBatteryDate *Date `json:"estimatedLowBatteryDate,omitempty"`
// ForceSendFields is a list of field names (e.g. "Alerts") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Alerts") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Diagnostics) MarshalJSON() ([]byte, error) {
type NoMethod Diagnostics
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, 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);
//
// }
//
// The JSON representation for `Empty` is empty JSON object `{}`.
type Empty struct {
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
}
// EphemeralIdRegistration: Write-only registration parameters for
// beacons using Eddystone-EID format.
// Two ways of securely registering an Eddystone-EID beacon with the
// service
// are supported:
//
// 1. Perform an ECDH key exchange via this API, including a previous
// call
//
// to `GET /v1beta1/eidparams`. In this case the fields
// `beacon_ecdh_public_key` and `service_ecdh_public_key` should be
// populated and `beacon_identity_key` should not be populated. This
// method ensures that only the two parties in the ECDH key exchange
//
// can
//
// compute the identity key, which becomes a secret between them.
// 2. Derive or obtain the beacon's identity key via other secure means
// (perhaps an ECDH key exchange between the beacon and a mobile
//
// device
//
// or any other secure method), and then submit the resulting
//
// identity key
//
// to the service. In this case `beacon_identity_key` field should
//
// be
//
// populated, and neither of `beacon_ecdh_public_key` nor
// `service_ecdh_public_key` fields should be. The security of this
//
// method
//
// depends on how securely the parties involved (in particular the
// bluetooth client) handle the identity key, and obviously on how
// securely the identity key was generated.
//
// See [the
// Eddystone
// specification](https://github.com/google/eddystone/tree/mast
// er/eddystone-eid)
// at GitHub.
type EphemeralIdRegistration struct {
// BeaconEcdhPublicKey: The beacon's public key used for the Elliptic
// curve Diffie-Hellman
// key exchange. When this field is populated,
// `service_ecdh_public_key`
// must also be populated, and `beacon_identity_key` must not be.
BeaconEcdhPublicKey string `json:"beaconEcdhPublicKey,omitempty"`
// BeaconIdentityKey: The private key of the beacon. If this field is
// populated,
// `beacon_ecdh_public_key` and `service_ecdh_public_key` must not
// be
// populated.
BeaconIdentityKey string `json:"beaconIdentityKey,omitempty"`
// InitialClockValue: The initial clock value of the beacon. The
// beacon's clock must have
// begun counting at this value immediately prior to transmitting
// this
// value to the resolving service. Significant delay in transmitting
// this
// value to the service risks registration or resolution failures. If
// a
// value is not provided, the default is zero.
InitialClockValue uint64 `json:"initialClockValue,omitempty,string"`
// InitialEid: An initial ephemeral ID calculated using the clock value
// submitted as
// `initial_clock_value`, and the secret key generated by
// the
// Diffie-Hellman key exchange using `service_ecdh_public_key`
// and
// `service_ecdh_public_key`. This initial EID value will be used by
// the
// service to confirm that the key exchange process was successful.
InitialEid string `json:"initialEid,omitempty"`
// RotationPeriodExponent: Indicates the nominal period between each
// rotation of the beacon's
// ephemeral ID. "Nominal" because the beacon should randomize
// the
// actual interval. See [the spec
// at
// github](https://github.com/google/eddystone/tree/master/eddystone-e
// id)
// for details. This value corresponds to a power-of-two scaler on
// the
// beacon's clock: when the scaler value is K, the beacon will
// begin
// broadcasting a new ephemeral ID on average every 2^K seconds.
RotationPeriodExponent int64 `json:"rotationPeriodExponent,omitempty"`
// ServiceEcdhPublicKey: The service's public key used for the Elliptic
// curve Diffie-Hellman
// key exchange. When this field is populated,
// `beacon_ecdh_public_key`
// must also be populated, and `beacon_identity_key` must not be.
ServiceEcdhPublicKey string `json:"serviceEcdhPublicKey,omitempty"`
// ForceSendFields is a list of field names (e.g. "BeaconEcdhPublicKey")
// to unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BeaconEcdhPublicKey") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *EphemeralIdRegistration) MarshalJSON() ([]byte, error) {
type NoMethod EphemeralIdRegistration
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// EphemeralIdRegistrationParams: Information a client needs to
// provision and register beacons that
// broadcast Eddystone-EID format beacon IDs, using Elliptic
// curve
// Diffie-Hellman key exchange. See
// [the
// Eddystone
// specification](https://github.com/google/eddystone/tree/mast
// er/eddystone-eid)
// at GitHub.
type EphemeralIdRegistrationParams struct {
// MaxRotationPeriodExponent: Indicates the maximum rotation period
// supported by the
// service.
// See
// EddystoneEidRegistration.rotation_period_exponent
MaxRotationPeriodExponent int64 `json:"maxRotationPeriodExponent,omitempty"`
// MinRotationPeriodExponent: Indicates the minimum rotation period
// supported by the
// service.
// See
// EddystoneEidRegistration.rotation_period_exponent
MinRotationPeriodExponent int64 `json:"minRotationPeriodExponent,omitempty"`
// ServiceEcdhPublicKey: The beacon service's public key for use by a
// beacon to derive its
// Identity Key using Elliptic Curve Diffie-Hellman key exchange.
ServiceEcdhPublicKey string `json:"serviceEcdhPublicKey,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g.
// "MaxRotationPeriodExponent") to unconditionally include in API
// requests. By default, fields with empty values are omitted from API
// requests. However, any non-pointer, non-interface field appearing in
// ForceSendFields will be sent to the server regardless of whether the
// field is empty or not. This may be used to include empty fields in
// Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g.
// "MaxRotationPeriodExponent") to include in API requests with the JSON
// null value. By default, fields with empty values are omitted from API
// requests. However, any field with an empty value appearing in
// NullFields will be sent to the server as null. It is an error if a
// field in this list has a non-empty value. This may be used to include
// null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *EphemeralIdRegistrationParams) MarshalJSON() ([]byte, error) {
type NoMethod EphemeralIdRegistrationParams
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// GetInfoForObservedBeaconsRequest: Request for beacon and attachment
// information about beacons that
// a mobile client has encountered "in the wild".
type GetInfoForObservedBeaconsRequest struct {
// NamespacedTypes: Specifies what kind of attachments to include in the
// response.
// When given, the response will include only attachments of the given
// types.
// When empty, no attachments will be returned. Must be in the
// format
// <var>namespace/type</var>. Accepts `*` to specify all types in
// all namespaces owned by the client.
// Optional.
NamespacedTypes []string `json:"namespacedTypes,omitempty"`