google-apis-sasportal_v1alpha1 0.17.0 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 734babed689ea9a8e04300f32259242ba5d7b9246873e7c14cde4373cc19bbfa
4
- data.tar.gz: cc890520406acb18b100c76fca3e3753ab84fc56b3a3382de88431776fc13a47
3
+ metadata.gz: ce0fcfd2dad664b6d5d3c3017596887e31b869b2f2118fcb84d218931779cece
4
+ data.tar.gz: 6db6467aeb975e1f82bf28db460436561e838a8dcf203bc259d841d20281303d
5
5
  SHA512:
6
- metadata.gz: 0d81b3452ad371138f7c70f53e0f69c1d31447633e9e2164f9e3dec53099a611dc77669980bd95cc93663849bb56d6284b62e920d80229b4449c4ae93a64f851
7
- data.tar.gz: 0bc59cfed43d015d2764b4c79962aeaef3f649cbde6a61e6bc0630021e53560730f1b12ecfd791c25398bac311d4216ab2ccf374cff94f1a808f41fe0c85b64d
6
+ metadata.gz: ec565d63e20465eb7bb3329db7a0006e7fec256d79713e007e33f44a8d5e45e171d27e47df0b5b1bde74ec4ad8340b09e7b2761cea051daa26098698701ab347
7
+ data.tar.gz: 69bf29e5aa9e439d5bd99ed267467b8c4b0773ef241e169b19448e982d8a6bab100d1610551b2c94541e5b1c9ded4ea051406aaf2fceb0ec76a227176d4d4db4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-sasportal_v1alpha1
2
2
 
3
+ ### v0.20.0 (2022-04-26)
4
+
5
+ * Regenerated from discovery document revision 20220425
6
+
7
+ ### v0.19.0 (2022-04-21)
8
+
9
+ * Regenerated from discovery document revision 20220419
10
+
11
+ ### v0.18.0 (2022-03-23)
12
+
13
+ * Regenerated from discovery document revision 20220319
14
+
3
15
  ### v0.17.0 (2022-02-25)
4
16
 
5
17
  * Regenerated from discovery document revision 20220224
@@ -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. The presence of the
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); ` The JSON representation for
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. The presence of the
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.17.0"
19
+ GEM_VERSION = "0.20.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 = "20220224"
25
+ REVISION = "20220425"
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.17.0
4
+ version: 0.20.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-02-28 00:00:00.000000000 Z
11
+ date: 2022-05-02 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.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sasportal_v1alpha1/v0.20.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: []