class Azure::IotHub::Mgmt::V2019_03_22_preview::Models::RegistryStatistics
Identity registry statistics.
Attributes
disabled_device_count[RW]
@return [Integer] The count of disabled devices in the identity registry.
enabled_device_count[RW]
@return [Integer] The count of enabled devices in the identity registry.
total_device_count[RW]
@return [Integer] The total count of devices in the identity registry.
Private Class Methods
mapper()
click to toggle source
Mapper for RegistryStatistics
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-03-22-preview/generated/azure_mgmt_iot_hub/models/registry_statistics.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RegistryStatistics', type: { name: 'Composite', class_name: 'RegistryStatistics', model_properties: { total_device_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'totalDeviceCount', type: { name: 'Number' } }, enabled_device_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'enabledDeviceCount', type: { name: 'Number' } }, disabled_device_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'disabledDeviceCount', type: { name: 'Number' } } } } } end