Class: Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::CapabilityInformation
- Inherits:
-
Object
- Object
- Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::CapabilityInformation
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb
Overview
Subscription-level properties and limits for Data Lake Analytics.
Instance Attribute Summary collapse
-
#account_count ⇒ Integer
subscription.
-
#max_account_count ⇒ Integer
subscription.
-
#migration_state ⇒ Boolean
maintenance state.
-
#state ⇒ SubscriptionState
include: ‘Registered’, ‘Suspended’, ‘Deleted’, ‘Unregistered’, ‘Warned’.
-
#subscription_id ⇒ Object
subscription.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CapabilityInformation class as Ruby Hash.
Instance Attribute Details
#account_count ⇒ Integer
subscription.
29 30 31 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 29 def account_count @account_count end |
#max_account_count ⇒ Integer
subscription.
25 26 27 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 25 def max_account_count @max_account_count end |
#migration_state ⇒ Boolean
maintenance state.
33 34 35 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 33 def migration_state @migration_state end |
#state ⇒ SubscriptionState
include: ‘Registered’, ‘Suspended’, ‘Deleted’, ‘Unregistered’, ‘Warned’
21 22 23 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 21 def state @state end |
#subscription_id ⇒ Object
subscription.
17 18 19 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 17 def subscription_id @subscription_id end |
Class Method Details
.mapper ⇒ Object
Mapper for CapabilityInformation class as Ruby Hash. This will be used for serialization/deserialization.
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 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CapabilityInformation', type: { name: 'Composite', class_name: 'CapabilityInformation', model_properties: { subscription_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'subscriptionId', type: { name: 'String' } }, state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'state', type: { name: 'String' } }, max_account_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'maxAccountCount', type: { name: 'Number' } }, account_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'accountCount', type: { name: 'Number' } }, migration_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'migrationState', type: { name: 'Boolean' } } } } } end |