Class: Azure::ARM::StreamAnalytics::Models::SubscriptionQuota
- Inherits:
-
SubResource
- Object
- MsRestAzure::SubResource
- SubResource
- Azure::ARM::StreamAnalytics::Models::SubscriptionQuota
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_stream_analytics/models/subscription_quota.rb
Overview
Describes the current quota for the subscription.
Instance Attribute Summary collapse
-
#current_count ⇒ Integer
The current usage of this resource.
-
#max_count ⇒ Integer
The max permitted usage of this resource.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SubscriptionQuota class as Ruby Hash.
Instance Attribute Details
#current_count ⇒ Integer
Returns The current usage of this resource.
20 21 22 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/subscription_quota.rb', line 20 def current_count @current_count end |
#max_count ⇒ Integer
Returns The max permitted usage of this resource.
17 18 19 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/subscription_quota.rb', line 17 def max_count @max_count end |
Class Method Details
.mapper ⇒ Object
Mapper for SubscriptionQuota class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/subscription_quota.rb', line 27 def self.mapper() { required: false, serialized_name: 'SubscriptionQuota', type: { name: 'Composite', class_name: 'SubscriptionQuota', model_properties: { id: { required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { required: false, serialized_name: 'name', type: { name: 'String' } }, type: { required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, max_count: { required: false, read_only: true, serialized_name: 'properties.maxCount', type: { name: 'Number' } }, current_count: { required: false, read_only: true, serialized_name: 'properties.currentCount', type: { name: 'Number' } } } } } end |