Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubscriptionQuota

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/subscription_quota.rb

Overview

Describes the current quota for the subscription.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id, #name, #type

Class Method Summary collapse

Instance Attribute Details

#current_countInteger

Returns The current usage of this resource.

Returns:

  • (Integer)

    The current usage of this resource.



19
20
21
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/subscription_quota.rb', line 19

def current_count
  @current_count
end

#max_countInteger

Returns The max permitted usage of this resource.

Returns:

  • (Integer)

    The max permitted usage of this resource.



16
17
18
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/subscription_quota.rb', line 16

def max_count
  @max_count
end

Class Method Details

.mapperObject

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



26
27
28
29
30
31
32
33
34
35
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
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/subscription_quota.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SubscriptionQuota',
    type: {
      name: 'Composite',
      class_name: 'SubscriptionQuota',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        max_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.maxCount',
          type: {
            name: 'Number'
          }
        },
        current_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.currentCount',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end