google-apis-sasportal_v1alpha1 0.17.0 → 0.18.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: 9808c507787525aff2a63ea6e974389c25b166045857c32a7a3792ca9c116bad
|
4
|
+
data.tar.gz: 55d539931c1731c5627a4ff670993bb059310e0359b4bcdf36c0dd3324bc7f54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c0411a75b1d5efcdd119e14b35e5903797ca0299179799ae3a6aca82952ff7afbabd10bfd2c0691998125407fa9dac93751487a8e7fe8a44515921395bd7d29
|
7
|
+
data.tar.gz: 2ac0fd42becdeba1c792b9c87e6f7a56dd1f9f373dbca84683a67015fedc072c34052a37c4e8b040c4037d95685de7643ac4a62a1d0d7d60645c519c5402a0cc
|
data/CHANGELOG.md
CHANGED
@@ -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,8 +454,7 @@ module Google
|
|
448
454
|
attr_accessor :nrqz_validated
|
449
455
|
alias_method :nrqz_validated?, :nrqz_validated
|
450
456
|
|
451
|
-
# Information about National Radio Quiet Zone validation.
|
452
|
-
# field indicates the device has been validated.
|
457
|
+
# Information about National Radio Quiet Zone validation.
|
453
458
|
# Corresponds to the JSON property `nrqzValidation`
|
454
459
|
# @return [Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation]
|
455
460
|
attr_accessor :nrqz_validation
|
@@ -539,8 +544,7 @@ module Google
|
|
539
544
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
540
545
|
# messages in your APIs. A typical example is to use it as the request or the
|
541
546
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
542
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
543
|
-
# `Empty` is empty JSON object ````.
|
547
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
544
548
|
class SasPortalEmpty
|
545
549
|
include Google::Apis::Core::Hashable
|
546
550
|
|
@@ -953,8 +957,7 @@ module Google
|
|
953
957
|
end
|
954
958
|
end
|
955
959
|
|
956
|
-
# Information about National Radio Quiet Zone validation.
|
957
|
-
# field indicates the device has been validated.
|
960
|
+
# Information about National Radio Quiet Zone validation.
|
958
961
|
class SasPortalNrqzValidation
|
959
962
|
include Google::Apis::Core::Hashable
|
960
963
|
|
@@ -978,6 +981,11 @@ module Google
|
|
978
981
|
# @return [Float]
|
979
982
|
attr_accessor :longitude
|
980
983
|
|
984
|
+
# State of the NRQZ validation info.
|
985
|
+
# Corresponds to the JSON property `state`
|
986
|
+
# @return [String]
|
987
|
+
attr_accessor :state
|
988
|
+
|
981
989
|
def initialize(**args)
|
982
990
|
update!(**args)
|
983
991
|
end
|
@@ -988,6 +996,7 @@ module Google
|
|
988
996
|
@cpi_id = args[:cpi_id] if args.key?(:cpi_id)
|
989
997
|
@latitude = args[:latitude] if args.key?(:latitude)
|
990
998
|
@longitude = args[:longitude] if args.key?(:longitude)
|
999
|
+
@state = args[:state] if args.key?(:state)
|
991
1000
|
end
|
992
1001
|
end
|
993
1002
|
|
@@ -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.18.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 = "20220319"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -346,6 +346,7 @@ module Google
|
|
346
346
|
property :frequency_range, as: 'frequencyRange', class: Google::Apis::SasportalV1alpha1::SasPortalFrequencyRange, decorator: Google::Apis::SasportalV1alpha1::SasPortalFrequencyRange::Representation
|
347
347
|
|
348
348
|
property :grant_id, as: 'grantId'
|
349
|
+
property :last_heartbeat_transmit_expire_time, as: 'lastHeartbeatTransmitExpireTime'
|
349
350
|
property :max_eirp, as: 'maxEirp'
|
350
351
|
collection :move_list, as: 'moveList', class: Google::Apis::SasportalV1alpha1::SasPortalDpaMoveList, decorator: Google::Apis::SasportalV1alpha1::SasPortalDpaMoveList::Representation
|
351
352
|
|
@@ -513,6 +514,7 @@ module Google
|
|
513
514
|
property :cpi_id, as: 'cpiId'
|
514
515
|
property :latitude, as: 'latitude'
|
515
516
|
property :longitude, as: 'longitude'
|
517
|
+
property :state, as: 'state'
|
516
518
|
end
|
517
519
|
end
|
518
520
|
|
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.18.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-03-28 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.18.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: []
|