Class: Google::Apis::SasportalV1alpha1::SasPortalDeviceMetadata
- Inherits:
-
Object
- Object
- Google::Apis::SasportalV1alpha1::SasPortalDeviceMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sasportal_v1alpha1/classes.rb,
lib/google/apis/sasportal_v1alpha1/representations.rb,
lib/google/apis/sasportal_v1alpha1/representations.rb
Overview
Device data overridable by both SAS Portal and registration requests.
Instance Attribute Summary collapse
-
#antenna_model ⇒ String
If populated, the Antenna Model Pattern to use.
-
#common_channel_group ⇒ String
CCG.
-
#interference_coordination_group ⇒ String
ICG.
-
#nrqz_validated ⇒ Boolean
(also: #nrqz_validated?)
Output only.
-
#nrqz_validation ⇒ Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation
Information about National Radio Quiet Zone validation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SasPortalDeviceMetadata
constructor
A new instance of SasPortalDeviceMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SasPortalDeviceMetadata
Returns a new instance of SasPortalDeviceMetadata.
462 463 464 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 462 def initialize(**args) update!(**args) end |
Instance Attribute Details
#antenna_model ⇒ String
If populated, the Antenna Model Pattern to use. Format is: RecordCreatorId:
PatternId
Corresponds to the JSON property antennaModel
436 437 438 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 436 def antenna_model @antenna_model end |
#common_channel_group ⇒ String
CCG. A group of CBSDs in the same ICG requesting a common primary channel
assignment. See CBRSA-TS-2001 V3.0.0 for more details.
Corresponds to the JSON property commonChannelGroup
442 443 444 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 442 def common_channel_group @common_channel_group end |
#interference_coordination_group ⇒ String
ICG. A group of CBSDs that manage their own interference with the group. See
CBRSA-TS-2001 V3.0.0 for more details.
Corresponds to the JSON property interferenceCoordinationGroup
448 449 450 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 448 def interference_coordination_group @interference_coordination_group end |
#nrqz_validated ⇒ Boolean Also known as: nrqz_validated?
Output only. Whether a CPI has validated to have coordinated with the National
Quiet Zone office.
Corresponds to the JSON property nrqzValidated
454 455 456 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 454 def nrqz_validated @nrqz_validated end |
#nrqz_validation ⇒ Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation
Information about National Radio Quiet Zone validation.
Corresponds to the JSON property nrqzValidation
460 461 462 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 460 def nrqz_validation @nrqz_validation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
467 468 469 470 471 472 473 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 467 def update!(**args) @antenna_model = args[:antenna_model] if args.key?(:antenna_model) @common_channel_group = args[:common_channel_group] if args.key?(:common_channel_group) @interference_coordination_group = args[:interference_coordination_group] if args.key?(:interference_coordination_group) @nrqz_validated = args[:nrqz_validated] if args.key?(:nrqz_validated) @nrqz_validation = args[:nrqz_validation] if args.key?(:nrqz_validation) end |