google-apis-sasportal_v1alpha1 0.1.0 → 0.6.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: ba5427da5b69a95bbe40604a8a24a5960d0d4da0137d22d97c19db2f8e0b7f0c
4
- data.tar.gz: d009de43158e84d25bcf1338a81a93b49a5d8ebc68f683431d70a08f69ab58fa
3
+ metadata.gz: db497d9869248de1af352d0e38529e5547f8f4927a4273547e94e992b0c5d269
4
+ data.tar.gz: ec0b62bb5e3c74b3f119524462cd8cf674147eaab72452adffe8bc99e02e7ab1
5
5
  SHA512:
6
- metadata.gz: b0b952d9a087b9327449402a08167263215e10cf48e60eb94429cc0d6374fa3656368d0176dedfb5109baf4cd85c740712f403b3990d997ed830303e95468659
7
- data.tar.gz: cf64ad5af3e4b132e36c3fbe8a9faa45538727cf7a39b3c8104d3a4fc4ba4f3d2dee532a97c6a8e894f6a8fa3ae6a2b7943707c0f2e68981d0d92e524c63b96a
6
+ metadata.gz: 78ca01f64083892e7b13afc42f107df6f5b743ab68b83829cb01eccec715e95f08bce2f60a709b6d425f35cc609ed302d0c055cb580b8db6481e12f07c4a09e1
7
+ data.tar.gz: 276252cd5510346beba4ebe5c291f72dc110755129bfbe12d986dde755056a9a5311d37047e6e3f55e46388023328aa22bd3277f066475f205612b5a2e826e90
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-sasportal_v1alpha1
2
2
 
3
+ ### v0.6.0 (2021-04-07)
4
+
5
+ * Regenerated from discovery document revision 20210403
6
+
7
+ ### v0.5.0 (2021-03-18)
8
+
9
+ * Regenerated from discovery document revision 20210315
10
+ * Regenerated using generator version 0.2.0
11
+
12
+ ### v0.4.0 (2021-03-04)
13
+
14
+ * Unspecified changes
15
+
16
+ ### v0.3.0 (2021-02-19)
17
+
18
+ * Regenerated from discovery document revision 20210218
19
+
20
+ ### v0.2.0 (2021-02-04)
21
+
22
+ * Regenerated from discovery document revision 20210202
23
+ * Regenerated using generator version 0.1.2
24
+
3
25
  ### v0.1.0 (2021-01-07)
4
26
 
5
27
  * Regenerated using generator version 0.1.1
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1alpha1'
31
31
 
32
- # View your email address
32
+ # See your primary Google Account email address
33
33
  AUTH_USERINFO_EMAIL = 'https://www.googleapis.com/auth/userinfo.email'
34
34
  end
35
35
  end
@@ -50,34 +50,19 @@ module Google
50
50
  end
51
51
  end
52
52
 
53
- # Request for BulkCreateDevice method.
54
- class SasPortalBulkCreateDeviceRequest
53
+ # The channel with score.
54
+ class SasPortalChannelWithScore
55
55
  include Google::Apis::Core::Hashable
56
56
 
57
- # Required. A csv with each row representing a [device]. Each row must conform
58
- # to the regulations described on CreateDeviceRequest's device field.
59
- # Corresponds to the JSON property `csv`
60
- # @return [String]
61
- attr_accessor :csv
62
-
63
- def initialize(**args)
64
- update!(**args)
65
- end
66
-
67
- # Update properties of this object
68
- def update!(**args)
69
- @csv = args[:csv] if args.key?(:csv)
70
- end
71
- end
72
-
73
- # Response for BulkCreateDevice method.
74
- class SasPortalBulkCreateDeviceResponse
75
- include Google::Apis::Core::Hashable
57
+ # Frequency range from `low_frequency` to `high_frequency`.
58
+ # Corresponds to the JSON property `frequencyRange`
59
+ # @return [Google::Apis::SasportalV1alpha1::SasPortalFrequencyRange]
60
+ attr_accessor :frequency_range
76
61
 
77
- # Required. The devices that were imported.
78
- # Corresponds to the JSON property `devices`
79
- # @return [Array<Google::Apis::SasportalV1alpha1::SasPortalDevice>]
80
- attr_accessor :devices
62
+ # The channel score, normalized to be in [0,100].
63
+ # Corresponds to the JSON property `score`
64
+ # @return [Float]
65
+ attr_accessor :score
81
66
 
82
67
  def initialize(**args)
83
68
  update!(**args)
@@ -85,22 +70,23 @@ module Google
85
70
 
86
71
  # Update properties of this object
87
72
  def update!(**args)
88
- @devices = args[:devices] if args.key?(:devices)
73
+ @frequency_range = args[:frequency_range] if args.key?(:frequency_range)
74
+ @score = args[:score] if args.key?(:score)
89
75
  end
90
76
  end
91
77
 
92
- # Request for CreateSignedDevice method.
78
+ # Request for CreateSignedDevice.
93
79
  class SasPortalCreateSignedDeviceRequest
94
80
  include Google::Apis::Core::Hashable
95
81
 
96
82
  # Required. JSON Web Token signed using a CPI private key. Payload must be the
97
- # JSON encoding of the [Device]. The user_id field must be set.
83
+ # JSON encoding of the device. The user_id field must be set.
98
84
  # Corresponds to the JSON property `encodedDevice`
99
85
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
100
86
  # @return [String]
101
87
  attr_accessor :encoded_device
102
88
 
103
- # Required. Unique installer id (cpiId) from the Certified Professional
89
+ # Required. Unique installer id (CPI ID) from the Certified Professional
104
90
  # Installers database.
105
91
  # Corresponds to the JSON property `installerId`
106
92
  # @return [String]
@@ -148,6 +134,50 @@ module Google
148
134
  end
149
135
  end
150
136
 
137
+ # The Deployment.
138
+ class SasPortalDeployment
139
+ include Google::Apis::Core::Hashable
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
+ # The deployment's display name.
152
+ # Corresponds to the JSON property `displayName`
153
+ # @return [String]
154
+ attr_accessor :display_name
155
+
156
+ # Output only. Resource name.
157
+ # Corresponds to the JSON property `name`
158
+ # @return [String]
159
+ attr_accessor :name
160
+
161
+ # User ID used by the devices belonging to this deployment. Each deployment
162
+ # should be associated with one unique user ID.
163
+ # Corresponds to the JSON property `sasUserIds`
164
+ # @return [Array<String>]
165
+ attr_accessor :sas_user_ids
166
+
167
+ def initialize(**args)
168
+ update!(**args)
169
+ end
170
+
171
+ # Update properties of this object
172
+ def update!(**args)
173
+ @allowed_billing_modes = args[:allowed_billing_modes] if args.key?(:allowed_billing_modes)
174
+ @default_billing_mode = args[:default_billing_mode] if args.key?(:default_billing_mode)
175
+ @display_name = args[:display_name] if args.key?(:display_name)
176
+ @name = args[:name] if args.key?(:name)
177
+ @sas_user_ids = args[:sas_user_ids] if args.key?(:sas_user_ids)
178
+ end
179
+ end
180
+
151
181
  #
152
182
  class SasPortalDevice
153
183
  include Google::Apis::Core::Hashable
@@ -157,6 +187,11 @@ module Google
157
187
  # @return [Google::Apis::SasportalV1alpha1::SasPortalDeviceConfig]
158
188
  attr_accessor :active_config
159
189
 
190
+ # Output only. Current channels with scores.
191
+ # Corresponds to the JSON property `currentChannels`
192
+ # @return [Array<Google::Apis::SasportalV1alpha1::SasPortalChannelWithScore>]
193
+ attr_accessor :current_channels
194
+
160
195
  # Device data overridable by both SAS Portal and registration requests.
161
196
  # Corresponds to the JSON property `deviceMetadata`
162
197
  # @return [Google::Apis::SasportalV1alpha1::SasPortalDeviceMetadata]
@@ -172,6 +207,11 @@ module Google
172
207
  # @return [String]
173
208
  attr_accessor :fcc_id
174
209
 
210
+ # Only ranges within the allowlists are available for new grants.
211
+ # Corresponds to the JSON property `grantRangeAllowlists`
212
+ # @return [Array<Google::Apis::SasportalV1alpha1::SasPortalFrequencyRange>]
213
+ attr_accessor :grant_range_allowlists
214
+
175
215
  # Output only. Grants held by the device.
176
216
  # Corresponds to the JSON property `grants`
177
217
  # @return [Array<Google::Apis::SasportalV1alpha1::SasPortalDeviceGrant>]
@@ -204,9 +244,11 @@ module Google
204
244
  # Update properties of this object
205
245
  def update!(**args)
206
246
  @active_config = args[:active_config] if args.key?(:active_config)
247
+ @current_channels = args[:current_channels] if args.key?(:current_channels)
207
248
  @device_metadata = args[:device_metadata] if args.key?(:device_metadata)
208
249
  @display_name = args[:display_name] if args.key?(:display_name)
209
250
  @fcc_id = args[:fcc_id] if args.key?(:fcc_id)
251
+ @grant_range_allowlists = args[:grant_range_allowlists] if args.key?(:grant_range_allowlists)
210
252
  @grants = args[:grants] if args.key?(:grants)
211
253
  @name = args[:name] if args.key?(:name)
212
254
  @preloaded_config = args[:preloaded_config] if args.key?(:preloaded_config)
@@ -219,15 +261,15 @@ module Google
219
261
  class SasPortalDeviceAirInterface
220
262
  include Google::Apis::Core::Hashable
221
263
 
222
- # This field specifies the radio access technology that is used for the CBSD.
223
- # Conditional
264
+ # Conditional. This field specifies the radio access technology that is used for
265
+ # the CBSD.
224
266
  # Corresponds to the JSON property `radioTechnology`
225
267
  # @return [String]
226
268
  attr_accessor :radio_technology
227
269
 
228
- # This field is related to the radioTechnology field and provides the air
270
+ # Optional. This field is related to the `radioTechnology` and provides the air
229
271
  # interface specification that the CBSD is compliant with at the time of
230
- # registration. Optional
272
+ # registration.
231
273
  # Corresponds to the JSON property `supportedSpec`
232
274
  # @return [String]
233
275
  attr_accessor :supported_spec
@@ -267,7 +309,7 @@ module Google
267
309
  # @return [Google::Apis::SasportalV1alpha1::SasPortalInstallationParams]
268
310
  attr_accessor :installation_params
269
311
 
270
- # Output-only. Whether the configuration has been signed by a CPI.
312
+ # Output only. Whether the configuration has been signed by a CPI.
271
313
  # Corresponds to the JSON property `isSigned`
272
314
  # @return [Boolean]
273
315
  attr_accessor :is_signed
@@ -288,7 +330,7 @@ module Google
288
330
  # @return [String]
289
331
  attr_accessor :state
290
332
 
291
- # Output-only. The last time the device configuration was edited.
333
+ # Output only. The last time the device configuration was edited.
292
334
  # Corresponds to the JSON property `updateTime`
293
335
  # @return [String]
294
336
  attr_accessor :update_time
@@ -344,7 +386,7 @@ module Google
344
386
  attr_accessor :grant_id
345
387
 
346
388
  # Maximum Equivalent Isotropically Radiated Power (EIRP) permitted by the grant.
347
- # The maximum EIRP is in units of dBm/MHz. The value of maxEirp represents the
389
+ # The maximum EIRP is in units of dBm/MHz. The value of `maxEirp` represents the
348
390
  # average (RMS) EIRP that would be measured by the procedure defined in FCC part
349
391
  # 96.41(e)(3).
350
392
  # Corresponds to the JSON property `maxEirp`
@@ -506,8 +548,7 @@ module Google
506
548
  end
507
549
  end
508
550
 
509
- # Request for GenerateSecret method] [spectrum.sas.portal.v1alpha1.DeviceManager.
510
- # GenerateSecret].
551
+ # Request for GenerateSecret.
511
552
  class SasPortalGenerateSecretRequest
512
553
  include Google::Apis::Core::Hashable
513
554
 
@@ -520,11 +561,11 @@ module Google
520
561
  end
521
562
  end
522
563
 
523
- # Response for GenerateSecret method.
564
+ # Response for GenerateSecret.
524
565
  class SasPortalGenerateSecretResponse
525
566
  include Google::Apis::Core::Hashable
526
567
 
527
- # The secret generated by the string and used by [ValidateInstaller] method.
568
+ # The secret generated by the string and used by ValidateInstaller.
528
569
  # Corresponds to the JSON property `secret`
529
570
  # @return [String]
530
571
  attr_accessor :secret
@@ -613,9 +654,9 @@ module Google
613
654
  # @return [Fixnum]
614
655
  attr_accessor :eirp_capability
615
656
 
616
- # Device antenna height in meters. When the heightType parameter value is "AGL",
617
- # the antenna height should be given relative to ground level. When the
618
- # heightType parameter value is "AMSL", it is given with respect to WGS84 datum.
657
+ # Device antenna height in meters. When the `heightType` parameter value is "AGL"
658
+ # , the antenna height should be given relative to ground level. When the `
659
+ # heightType` parameter value is "AMSL", it is given with respect to WGS84 datum.
619
660
  # Corresponds to the JSON property `height`
620
661
  # @return [Float]
621
662
  attr_accessor :height
@@ -632,7 +673,7 @@ module Google
632
673
  # @return [Float]
633
674
  attr_accessor :horizontal_accuracy
634
675
 
635
- # Whether the device antenna is indoor or not. True: indoor. False: outdoor.
676
+ # Whether the device antenna is indoor or not. `true`: indoor. `false`: outdoor.
636
677
  # Corresponds to the JSON property `indoorDeployment`
637
678
  # @return [Boolean]
638
679
  attr_accessor :indoor_deployment
@@ -645,7 +686,7 @@ module Google
645
686
  # @return [Float]
646
687
  attr_accessor :latitude
647
688
 
648
- # Longitude of the device antenna location. in degrees relative to the WGS 84
689
+ # Longitude of the device antenna location in degrees relative to the WGS 84
649
690
  # datum. The allowed range is from -180.000000 to +180.000000. Positive values
650
691
  # represent longitudes east of the prime meridian; negative values west of the
651
692
  # prime meridian.
@@ -692,7 +733,7 @@ module Google
692
733
  # @return [Array<Google::Apis::SasportalV1alpha1::SasPortalCustomer>]
693
734
  attr_accessor :customers
694
735
 
695
- # A pagination token returned from a previous call to ListCustomers method that
736
+ # A pagination token returned from a previous call to ListCustomers that
696
737
  # indicates from where listing should continue. If the field is missing or empty,
697
738
  # it means there are no more customers.
698
739
  # Corresponds to the JSON property `nextPageToken`
@@ -710,7 +751,34 @@ module Google
710
751
  end
711
752
  end
712
753
 
713
- # Response for ListDevices method.
754
+ # Response for ListDeployments.
755
+ class SasPortalListDeploymentsResponse
756
+ include Google::Apis::Core::Hashable
757
+
758
+ # The deployments that match the request.
759
+ # Corresponds to the JSON property `deployments`
760
+ # @return [Array<Google::Apis::SasportalV1alpha1::SasPortalDeployment>]
761
+ attr_accessor :deployments
762
+
763
+ # A pagination token returned from a previous call to ListDeployments that
764
+ # indicates from where listing should continue. If the field is missing or empty,
765
+ # it means there are no more deployments.
766
+ # Corresponds to the JSON property `nextPageToken`
767
+ # @return [String]
768
+ attr_accessor :next_page_token
769
+
770
+ def initialize(**args)
771
+ update!(**args)
772
+ end
773
+
774
+ # Update properties of this object
775
+ def update!(**args)
776
+ @deployments = args[:deployments] if args.key?(:deployments)
777
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
778
+ end
779
+ end
780
+
781
+ # Response for ListDevices.
714
782
  class SasPortalListDevicesResponse
715
783
  include Google::Apis::Core::Hashable
716
784
 
@@ -719,9 +787,9 @@ module Google
719
787
  # @return [Array<Google::Apis::SasportalV1alpha1::SasPortalDevice>]
720
788
  attr_accessor :devices
721
789
 
722
- # A pagination token returned from a previous call to ListDevices method that
723
- # indicates from where listing should continue. If the field is missing or empty,
724
- # it means there is no more devices.
790
+ # A pagination token returned from a previous call to ListDevices that indicates
791
+ # from where listing should continue. If the field is missing or empty, it means
792
+ # there is no more devices.
725
793
  # Corresponds to the JSON property `nextPageToken`
726
794
  # @return [String]
727
795
  attr_accessor :next_page_token
@@ -737,13 +805,13 @@ module Google
737
805
  end
738
806
  end
739
807
 
740
- # Response for ListNodes method.
808
+ # Response for ListNodes.
741
809
  class SasPortalListNodesResponse
742
810
  include Google::Apis::Core::Hashable
743
811
 
744
- # A pagination token returned from a previous call to ListNodes method that
745
- # indicates from where listing should continue. If the field is missing or empty,
746
- # it means there is no more nodes.
812
+ # A pagination token returned from a previous call to ListNodes that indicates
813
+ # from where listing should continue. If the field is missing or empty, it means
814
+ # there is no more nodes.
747
815
  # Corresponds to the JSON property `nextPageToken`
748
816
  # @return [String]
749
817
  attr_accessor :next_page_token
@@ -764,11 +832,11 @@ module Google
764
832
  end
765
833
  end
766
834
 
767
- # Request for MoveDeployment method.
835
+ # Request for MoveDeployment.
768
836
  class SasPortalMoveDeploymentRequest
769
837
  include Google::Apis::Core::Hashable
770
838
 
771
- # Required. The name of the new parent resource Node or Customer to reparent the
839
+ # Required. The name of the new parent resource node or customer to reparent the
772
840
  # deployment under.
773
841
  # Corresponds to the JSON property `destination`
774
842
  # @return [String]
@@ -784,12 +852,12 @@ module Google
784
852
  end
785
853
  end
786
854
 
787
- # Request for MoveDevice method.
855
+ # Request for MoveDevice.
788
856
  class SasPortalMoveDeviceRequest
789
857
  include Google::Apis::Core::Hashable
790
858
 
791
- # Required. The name of the new parent resource (Node or Customer) to reparent
792
- # the device under.
859
+ # Required. The name of the new parent resource node or customer to reparent the
860
+ # device under.
793
861
  # Corresponds to the JSON property `destination`
794
862
  # @return [String]
795
863
  attr_accessor :destination
@@ -804,12 +872,12 @@ module Google
804
872
  end
805
873
  end
806
874
 
807
- # Request for MoveNode method.
875
+ # Request for MoveNode.
808
876
  class SasPortalMoveNodeRequest
809
877
  include Google::Apis::Core::Hashable
810
878
 
811
- # Required. The name of the new parent resource node or Customer) to reparent
812
- # the node under.
879
+ # Required. The name of the new parent resource node or customer to reparent the
880
+ # node under.
813
881
  # Corresponds to the JSON property `destination`
814
882
  # @return [String]
815
883
  attr_accessor :destination
@@ -921,19 +989,19 @@ module Google
921
989
  class SasPortalPolicy
922
990
  include Google::Apis::Core::Hashable
923
991
 
924
- #
992
+ # List of assignments
925
993
  # Corresponds to the JSON property `assignments`
926
994
  # @return [Array<Google::Apis::SasportalV1alpha1::SasPortalAssignment>]
927
995
  attr_accessor :assignments
928
996
 
929
- # The [etag] is used for optimistic concurrency control as a way to help prevent
997
+ # The etag is used for optimistic concurrency control as a way to help prevent
930
998
  # simultaneous updates of a policy from overwriting each other. It is strongly
931
- # suggested that systems make use of the [etag] in the read-modify-write cycle
932
- # to perform policy updates in order to avoid race conditions: An [etag] is
933
- # returned in the response to [GetPolicy], and systems are expected to put that
934
- # etag in the request to [SetPolicy] to ensure that their change will be applied
935
- # to the same version of the policy. If no [etag] is provided in the call to [
936
- # SetPolicy], then the existing policy is overwritten blindly.
999
+ # suggested that systems make use of the etag in the read-modify-write cycle to
1000
+ # perform policy updates in order to avoid race conditions: An etag is returned
1001
+ # in the response to GetPolicy, and systems are expected to put that etag in the
1002
+ # request to SetPolicy to ensure that their change will be applied to the same
1003
+ # version of the policy. If no etag is provided in the call to GetPolicy, then
1004
+ # the existing policy is overwritten blindly.
937
1005
  # Corresponds to the JSON property `etag`
938
1006
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
939
1007
  # @return [String]
@@ -976,7 +1044,7 @@ module Google
976
1044
  end
977
1045
  end
978
1046
 
979
- # Request for SignDevice method.
1047
+ # Request for SignDevice.
980
1048
  class SasPortalSignDeviceRequest
981
1049
  include Google::Apis::Core::Hashable
982
1050
 
@@ -1079,7 +1147,7 @@ module Google
1079
1147
  end
1080
1148
  end
1081
1149
 
1082
- # Request for UpdateSignedDevice method.
1150
+ # Request for UpdateSignedDevice.
1083
1151
  class SasPortalUpdateSignedDeviceRequest
1084
1152
  include Google::Apis::Core::Hashable
1085
1153
 
@@ -1107,7 +1175,7 @@ module Google
1107
1175
  end
1108
1176
  end
1109
1177
 
1110
- # Request for ValidateInstaller method.
1178
+ # Request for ValidateInstaller.
1111
1179
  class SasPortalValidateInstallerRequest
1112
1180
  include Google::Apis::Core::Hashable
1113
1181
 
@@ -1117,13 +1185,13 @@ module Google
1117
1185
  # @return [String]
1118
1186
  attr_accessor :encoded_secret
1119
1187
 
1120
- # Required. Unique installer id (cpiId) from the Certified Professional
1188
+ # Required. Unique installer id (CPI ID) from the Certified Professional
1121
1189
  # Installers database.
1122
1190
  # Corresponds to the JSON property `installerId`
1123
1191
  # @return [String]
1124
1192
  attr_accessor :installer_id
1125
1193
 
1126
- # Required. Secret returned by the GenerateSecret method.
1194
+ # Required. Secret returned by the GenerateSecret.
1127
1195
  # Corresponds to the JSON property `secret`
1128
1196
  # @return [String]
1129
1197
  attr_accessor :secret
@@ -1140,8 +1208,7 @@ module Google
1140
1208
  end
1141
1209
  end
1142
1210
 
1143
- # Response for ValidateInstaller method] [spectrum.sas.portal.v1alpha1.
1144
- # DeviceManager.ValidateInstaller].
1211
+ # Response for ValidateInstaller.
1145
1212
  class SasPortalValidateInstallerResponse
1146
1213
  include Google::Apis::Core::Hashable
1147
1214