class Azure::Storage::Mgmt::V2015_06_15::Models::Usage
Attributes
current_value[RW]
@return [Integer] The current count of the allocated resources in the subscription.
limit[RW]
@return [Integer] The maximum count of the resources that can be allocated in the subscription.
name[RW]
@return [UsageName] The name of the type of usage.
unit[RW]
@return [UsageUnit] The unit of measurement. Possible values include: 'Count', 'Bytes', 'Seconds', 'Percent', 'CountsPerSecond', 'BytesPerSecond'
Public Class Methods
mapper()
click to toggle source
Mapper for Usage
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-06-15/generated/azure_mgmt_storage/models/usage.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Usage', type: { name: 'Composite', class_name: 'Usage', model_properties: { unit: { client_side_validation: true, required: true, serialized_name: 'unit', type: { name: 'Enum', module: 'UsageUnit' } }, current_value: { client_side_validation: true, required: true, serialized_name: 'currentValue', type: { name: 'Number' } }, limit: { client_side_validation: true, required: true, serialized_name: 'limit', type: { name: 'Number' } }, name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'Composite', class_name: 'UsageName' } } } } } end