Class: Google::Apis::CloudnumberregistryV1alpha::RealmAggregatedData
- Inherits:
-
Object
- Object
- Google::Apis::CloudnumberregistryV1alpha::RealmAggregatedData
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudnumberregistry_v1alpha/classes.rb,
lib/google/apis/cloudnumberregistry_v1alpha/representations.rb,
lib/google/apis/cloudnumberregistry_v1alpha/representations.rb
Overview
Aggregated data for the Realm.
Instance Attribute Summary collapse
-
#custom_ranges_count ⇒ Fixnum
Output only.
-
#discovered_ranges_count ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RealmAggregatedData
constructor
A new instance of RealmAggregatedData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RealmAggregatedData
Returns a new instance of RealmAggregatedData.
1112 1113 1114 |
# File 'lib/google/apis/cloudnumberregistry_v1alpha/classes.rb', line 1112 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_ranges_count ⇒ Fixnum
Output only. Number of CustomRanges in the Realm.
Corresponds to the JSON property customRangesCount
1105 1106 1107 |
# File 'lib/google/apis/cloudnumberregistry_v1alpha/classes.rb', line 1105 def custom_ranges_count @custom_ranges_count end |
#discovered_ranges_count ⇒ Fixnum
Output only. Number of DiscoveredRanges in the Realm.
Corresponds to the JSON property discoveredRangesCount
1110 1111 1112 |
# File 'lib/google/apis/cloudnumberregistry_v1alpha/classes.rb', line 1110 def discovered_ranges_count @discovered_ranges_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1117 1118 1119 1120 |
# File 'lib/google/apis/cloudnumberregistry_v1alpha/classes.rb', line 1117 def update!(**args) @custom_ranges_count = args[:custom_ranges_count] if args.key?(:custom_ranges_count) @discovered_ranges_count = args[:discovered_ranges_count] if args.key?(:discovered_ranges_count) end |