google-apis-sasportal_v1alpha1 0.14.0 → 0.17.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: 9c38933204b041367b49e5366427c51bb113238d45e1149f35b05d63ef513460
4
- data.tar.gz: 1490845fb2773a6cd171c9e5606eac296c2cb8e0a681893d08aee831420e5f45
3
+ metadata.gz: 734babed689ea9a8e04300f32259242ba5d7b9246873e7c14cde4373cc19bbfa
4
+ data.tar.gz: cc890520406acb18b100c76fca3e3753ab84fc56b3a3382de88431776fc13a47
5
5
  SHA512:
6
- metadata.gz: 17408240d483fa9e8ed928d0162165093a6e8eeb7b0643b42a8ed4cd59e670249df32ec093b79d539d970105c79bb5a331ea5dd6dd6bef46043f113d12630c5b
7
- data.tar.gz: aaa12cf8a9ad8254281cd20a31f351e55a449271d9a080fae58544fea5bc1809a583e9a68f420a3b3a92206f808ddc106cd3bcfa2f53f45390fcbddae177e4c1
6
+ metadata.gz: 0d81b3452ad371138f7c70f53e0f69c1d31447633e9e2164f9e3dec53099a611dc77669980bd95cc93663849bb56d6284b62e920d80229b4449c4ae93a64f851
7
+ data.tar.gz: 0bc59cfed43d015d2764b4c79962aeaef3f649cbde6a61e6bc0630021e53560730f1b12ecfd791c25398bac311d4216ab2ccf374cff94f1a808f41fe0c85b64d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-sasportal_v1alpha1
2
2
 
3
+ ### v0.17.0 (2022-02-25)
4
+
5
+ * Regenerated from discovery document revision 20220224
6
+
7
+ ### v0.16.0 (2022-02-10)
8
+
9
+ * Regenerated from discovery document revision 20220208
10
+
11
+ ### v0.15.0 (2022-01-14)
12
+
13
+ * Regenerated from discovery document revision 20220110
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.14.0 (2021-12-16)
4
17
 
5
18
  * Unspecified changes
@@ -138,16 +138,6 @@ module Google
138
138
  class SasPortalDeployment
139
139
  include Google::Apis::Core::Hashable
140
140
 
141
- # The allowed billing modes under this deployment.
142
- # Corresponds to the JSON property `allowedBillingModes`
143
- # @return [Array<String>]
144
- attr_accessor :allowed_billing_modes
145
-
146
- # Default billing mode for the deployment and devices under it.
147
- # Corresponds to the JSON property `defaultBillingMode`
148
- # @return [String]
149
- attr_accessor :default_billing_mode
150
-
151
141
  # The deployment's display name.
152
142
  # Corresponds to the JSON property `displayName`
153
143
  # @return [String]
@@ -175,8 +165,6 @@ module Google
175
165
 
176
166
  # Update properties of this object
177
167
  def update!(**args)
178
- @allowed_billing_modes = args[:allowed_billing_modes] if args.key?(:allowed_billing_modes)
179
- @default_billing_mode = args[:default_billing_mode] if args.key?(:default_billing_mode)
180
168
  @display_name = args[:display_name] if args.key?(:display_name)
181
169
  @frns = args[:frns] if args.key?(:frns)
182
170
  @name = args[:name] if args.key?(:name)
@@ -453,6 +441,19 @@ module Google
453
441
  # @return [String]
454
442
  attr_accessor :interference_coordination_group
455
443
 
444
+ # Output only. Whether a CPI has validated to have coordinated with the National
445
+ # Quiet Zone office.
446
+ # Corresponds to the JSON property `nrqzValidated`
447
+ # @return [Boolean]
448
+ attr_accessor :nrqz_validated
449
+ alias_method :nrqz_validated?, :nrqz_validated
450
+
451
+ # Information about National Radio Quiet Zone validation. The presence of the
452
+ # field indicates the device has been validated.
453
+ # Corresponds to the JSON property `nrqzValidation`
454
+ # @return [Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation]
455
+ attr_accessor :nrqz_validation
456
+
456
457
  def initialize(**args)
457
458
  update!(**args)
458
459
  end
@@ -462,6 +463,8 @@ module Google
462
463
  @antenna_model = args[:antenna_model] if args.key?(:antenna_model)
463
464
  @common_channel_group = args[:common_channel_group] if args.key?(:common_channel_group)
464
465
  @interference_coordination_group = args[:interference_coordination_group] if args.key?(:interference_coordination_group)
466
+ @nrqz_validated = args[:nrqz_validated] if args.key?(:nrqz_validated)
467
+ @nrqz_validation = args[:nrqz_validation] if args.key?(:nrqz_validation)
465
468
  end
466
469
  end
467
470
 
@@ -950,6 +953,44 @@ module Google
950
953
  end
951
954
  end
952
955
 
956
+ # Information about National Radio Quiet Zone validation. The presence of the
957
+ # field indicates the device has been validated.
958
+ class SasPortalNrqzValidation
959
+ include Google::Apis::Core::Hashable
960
+
961
+ # Validation case id.
962
+ # Corresponds to the JSON property `caseId`
963
+ # @return [String]
964
+ attr_accessor :case_id
965
+
966
+ # CPI who signed the validation.
967
+ # Corresponds to the JSON property `cpiId`
968
+ # @return [String]
969
+ attr_accessor :cpi_id
970
+
971
+ # Device latitude associated with the validation.
972
+ # Corresponds to the JSON property `latitude`
973
+ # @return [Float]
974
+ attr_accessor :latitude
975
+
976
+ # Device longitude associated with the validation.
977
+ # Corresponds to the JSON property `longitude`
978
+ # @return [Float]
979
+ attr_accessor :longitude
980
+
981
+ def initialize(**args)
982
+ update!(**args)
983
+ end
984
+
985
+ # Update properties of this object
986
+ def update!(**args)
987
+ @case_id = args[:case_id] if args.key?(:case_id)
988
+ @cpi_id = args[:cpi_id] if args.key?(:cpi_id)
989
+ @latitude = args[:latitude] if args.key?(:latitude)
990
+ @longitude = args[:longitude] if args.key?(:longitude)
991
+ end
992
+ end
993
+
953
994
  # This resource represents a long-running operation that is the result of a
954
995
  # network API call.
955
996
  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.14.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210910"
25
+ REVISION = "20220224"
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
 
@@ -275,8 +281,6 @@ module Google
275
281
  class SasPortalDeployment
276
282
  # @private
277
283
  class Representation < Google::Apis::Core::JsonRepresentation
278
- collection :allowed_billing_modes, as: 'allowedBillingModes'
279
- property :default_billing_mode, as: 'defaultBillingMode'
280
284
  property :display_name, as: 'displayName'
281
285
  collection :frns, as: 'frns'
282
286
  property :name, as: 'name'
@@ -356,6 +360,9 @@ module Google
356
360
  property :antenna_model, as: 'antennaModel'
357
361
  property :common_channel_group, as: 'commonChannelGroup'
358
362
  property :interference_coordination_group, as: 'interferenceCoordinationGroup'
363
+ property :nrqz_validated, as: 'nrqzValidated'
364
+ property :nrqz_validation, as: 'nrqzValidation', class: Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation, decorator: Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation::Representation
365
+
359
366
  end
360
367
  end
361
368
 
@@ -499,6 +506,16 @@ module Google
499
506
  end
500
507
  end
501
508
 
509
+ class SasPortalNrqzValidation
510
+ # @private
511
+ class Representation < Google::Apis::Core::JsonRepresentation
512
+ property :case_id, as: 'caseId'
513
+ property :cpi_id, as: 'cpiId'
514
+ property :latitude, as: 'latitude'
515
+ property :longitude, as: 'longitude'
516
+ end
517
+ end
518
+
502
519
  class SasPortalOperation
503
520
  # @private
504
521
  class Representation < Google::Apis::Core::JsonRepresentation
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.14.0
4
+ version: 0.17.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-01-10 00:00:00.000000000 Z
11
+ date: 2022-02-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.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sasportal_v1alpha1/v0.17.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for SAS Portal API V1alpha1