google-apis-sasportal_v1alpha1 0.16.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb3f4e37aca4077e764603345cf2f206baa59b515733b5ba24a5cb0ff8f735b6
|
4
|
+
data.tar.gz: 9f2419e5d5358fdc9b7c9e1865655f3d951fce8054e3a80e8392eba8582857fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1de5ccdc48d1a43ff6a6ac51063ee398e85da704803ae62cb44191d4dd0ca47f9fa4f7b2be3dcaabc62b16a5b2d82c917738f7b03074f4366c87197d1ab961a3
|
7
|
+
data.tar.gz: 21ea8cee1792c805e6747c1ab9d5ba27f378aad9ff105f2ccf7b511d8ae0e46acdcb6bacfea80c5124ef19bf312b88d4febb41e00dc78156907fd6b67eac1329
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-sasportal_v1alpha1
|
2
2
|
|
3
|
+
### v0.19.0 (2022-04-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220419
|
6
|
+
|
7
|
+
### v0.18.0 (2022-03-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220319
|
10
|
+
|
11
|
+
### v0.17.0 (2022-02-25)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220224
|
14
|
+
|
3
15
|
### v0.16.0 (2022-02-10)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220208
|
@@ -379,6 +379,11 @@ module Google
|
|
379
379
|
# @return [String]
|
380
380
|
attr_accessor :grant_id
|
381
381
|
|
382
|
+
# The transmit expiration time of the last heartbeat.
|
383
|
+
# Corresponds to the JSON property `lastHeartbeatTransmitExpireTime`
|
384
|
+
# @return [String]
|
385
|
+
attr_accessor :last_heartbeat_transmit_expire_time
|
386
|
+
|
382
387
|
# Maximum Equivalent Isotropically Radiated Power (EIRP) permitted by the grant.
|
383
388
|
# The maximum EIRP is in units of dBm/MHz. The value of `maxEirp` represents the
|
384
389
|
# average (RMS) EIRP that would be measured by the procedure defined in FCC part
|
@@ -412,6 +417,7 @@ module Google
|
|
412
417
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
413
418
|
@frequency_range = args[:frequency_range] if args.key?(:frequency_range)
|
414
419
|
@grant_id = args[:grant_id] if args.key?(:grant_id)
|
420
|
+
@last_heartbeat_transmit_expire_time = args[:last_heartbeat_transmit_expire_time] if args.key?(:last_heartbeat_transmit_expire_time)
|
415
421
|
@max_eirp = args[:max_eirp] if args.key?(:max_eirp)
|
416
422
|
@move_list = args[:move_list] if args.key?(:move_list)
|
417
423
|
@state = args[:state] if args.key?(:state)
|
@@ -448,6 +454,11 @@ module Google
|
|
448
454
|
attr_accessor :nrqz_validated
|
449
455
|
alias_method :nrqz_validated?, :nrqz_validated
|
450
456
|
|
457
|
+
# Information about National Radio Quiet Zone validation.
|
458
|
+
# Corresponds to the JSON property `nrqzValidation`
|
459
|
+
# @return [Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation]
|
460
|
+
attr_accessor :nrqz_validation
|
461
|
+
|
451
462
|
def initialize(**args)
|
452
463
|
update!(**args)
|
453
464
|
end
|
@@ -458,6 +469,7 @@ module Google
|
|
458
469
|
@common_channel_group = args[:common_channel_group] if args.key?(:common_channel_group)
|
459
470
|
@interference_coordination_group = args[:interference_coordination_group] if args.key?(:interference_coordination_group)
|
460
471
|
@nrqz_validated = args[:nrqz_validated] if args.key?(:nrqz_validated)
|
472
|
+
@nrqz_validation = args[:nrqz_validation] if args.key?(:nrqz_validation)
|
461
473
|
end
|
462
474
|
end
|
463
475
|
|
@@ -532,8 +544,7 @@ module Google
|
|
532
544
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
533
545
|
# messages in your APIs. A typical example is to use it as the request or the
|
534
546
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
535
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
536
|
-
# `Empty` is empty JSON object ````.
|
547
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
537
548
|
class SasPortalEmpty
|
538
549
|
include Google::Apis::Core::Hashable
|
539
550
|
|
@@ -946,6 +957,49 @@ module Google
|
|
946
957
|
end
|
947
958
|
end
|
948
959
|
|
960
|
+
# Information about National Radio Quiet Zone validation.
|
961
|
+
class SasPortalNrqzValidation
|
962
|
+
include Google::Apis::Core::Hashable
|
963
|
+
|
964
|
+
# Validation case id.
|
965
|
+
# Corresponds to the JSON property `caseId`
|
966
|
+
# @return [String]
|
967
|
+
attr_accessor :case_id
|
968
|
+
|
969
|
+
# CPI who signed the validation.
|
970
|
+
# Corresponds to the JSON property `cpiId`
|
971
|
+
# @return [String]
|
972
|
+
attr_accessor :cpi_id
|
973
|
+
|
974
|
+
# Device latitude associated with the validation.
|
975
|
+
# Corresponds to the JSON property `latitude`
|
976
|
+
# @return [Float]
|
977
|
+
attr_accessor :latitude
|
978
|
+
|
979
|
+
# Device longitude associated with the validation.
|
980
|
+
# Corresponds to the JSON property `longitude`
|
981
|
+
# @return [Float]
|
982
|
+
attr_accessor :longitude
|
983
|
+
|
984
|
+
# State of the NRQZ validation info.
|
985
|
+
# Corresponds to the JSON property `state`
|
986
|
+
# @return [String]
|
987
|
+
attr_accessor :state
|
988
|
+
|
989
|
+
def initialize(**args)
|
990
|
+
update!(**args)
|
991
|
+
end
|
992
|
+
|
993
|
+
# Update properties of this object
|
994
|
+
def update!(**args)
|
995
|
+
@case_id = args[:case_id] if args.key?(:case_id)
|
996
|
+
@cpi_id = args[:cpi_id] if args.key?(:cpi_id)
|
997
|
+
@latitude = args[:latitude] if args.key?(:latitude)
|
998
|
+
@longitude = args[:longitude] if args.key?(:longitude)
|
999
|
+
@state = args[:state] if args.key?(:state)
|
1000
|
+
end
|
1001
|
+
end
|
1002
|
+
|
949
1003
|
# This resource represents a long-running operation that is the result of a
|
950
1004
|
# network API call.
|
951
1005
|
class SasPortalOperation
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SasportalV1alpha1
|
18
18
|
# Version of the google-apis-sasportal_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220419"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -178,6 +178,12 @@ module Google
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
179
179
|
end
|
180
180
|
|
181
|
+
class SasPortalNrqzValidation
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
181
187
|
class SasPortalOperation
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
189
|
|
@@ -340,6 +346,7 @@ module Google
|
|
340
346
|
property :frequency_range, as: 'frequencyRange', class: Google::Apis::SasportalV1alpha1::SasPortalFrequencyRange, decorator: Google::Apis::SasportalV1alpha1::SasPortalFrequencyRange::Representation
|
341
347
|
|
342
348
|
property :grant_id, as: 'grantId'
|
349
|
+
property :last_heartbeat_transmit_expire_time, as: 'lastHeartbeatTransmitExpireTime'
|
343
350
|
property :max_eirp, as: 'maxEirp'
|
344
351
|
collection :move_list, as: 'moveList', class: Google::Apis::SasportalV1alpha1::SasPortalDpaMoveList, decorator: Google::Apis::SasportalV1alpha1::SasPortalDpaMoveList::Representation
|
345
352
|
|
@@ -355,6 +362,8 @@ module Google
|
|
355
362
|
property :common_channel_group, as: 'commonChannelGroup'
|
356
363
|
property :interference_coordination_group, as: 'interferenceCoordinationGroup'
|
357
364
|
property :nrqz_validated, as: 'nrqzValidated'
|
365
|
+
property :nrqz_validation, as: 'nrqzValidation', class: Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation, decorator: Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation::Representation
|
366
|
+
|
358
367
|
end
|
359
368
|
end
|
360
369
|
|
@@ -498,6 +507,17 @@ module Google
|
|
498
507
|
end
|
499
508
|
end
|
500
509
|
|
510
|
+
class SasPortalNrqzValidation
|
511
|
+
# @private
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
513
|
+
property :case_id, as: 'caseId'
|
514
|
+
property :cpi_id, as: 'cpiId'
|
515
|
+
property :latitude, as: 'latitude'
|
516
|
+
property :longitude, as: 'longitude'
|
517
|
+
property :state, as: 'state'
|
518
|
+
end
|
519
|
+
end
|
520
|
+
|
501
521
|
class SasPortalOperation
|
502
522
|
# @private
|
503
523
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -28,9 +28,6 @@ module Google
|
|
28
28
|
# Version of the SAS Portal API this client connects to.
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1alpha1'
|
31
|
-
|
32
|
-
# See your primary Google Account email address
|
33
|
-
AUTH_USERINFO_EMAIL = 'https://www.googleapis.com/auth/userinfo.email'
|
34
31
|
end
|
35
32
|
end
|
36
33
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-sasportal_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sasportal_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sasportal_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sasportal_v1alpha1/v0.19.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sasportal_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|