Class: Azure::Storage::Mgmt::V2021_01_01::Models::Usage

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2021-01-01/generated/azure_mgmt_storage/models/usage.rb

Overview

Describes Storage Resource Usage.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#current_valueInteger

the subscription.

Returns:

  • (Integer)

    Gets the current count of the allocated resources in



22
23
24
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/usage.rb', line 22

def current_value
  @current_value
end

#limitInteger

allocated in the subscription.

Returns:

  • (Integer)

    Gets the maximum count of the resources that can be



26
27
28
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/usage.rb', line 26

def limit
  @limit
end

#nameUsageName

Returns Gets the name of the type of usage.

Returns:

  • (UsageName)

    Gets the name of the type of usage.



29
30
31
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/usage.rb', line 29

def name
  @name
end

#unitUsageUnit

include: ‘Count’, ‘Bytes’, ‘Seconds’, ‘Percent’, ‘CountsPerSecond’, ‘BytesPerSecond’

Returns:

  • (UsageUnit)

    Gets the unit of measurement. Possible values



18
19
20
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/usage.rb', line 18

def unit
  @unit
end

Class Method Details

.mapperObject

Mapper for Usage class as Ruby Hash. This will be used for serialization/deserialization.



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/2021-01-01/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: false,
          read_only: true,
          serialized_name: 'unit',
          type: {
            name: 'Enum',
            module: 'UsageUnit'
          }
        },
        current_value: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'currentValue',
          type: {
            name: 'Number'
          }
        },
        limit: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'limit',
          type: {
            name: 'Number'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'Composite',
            class_name: 'UsageName'
          }
        }
      }
    }
  }
end