Class: Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::CapabilityInformation

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#account_countInteger

subscription.

Returns:

  • (Integer)

    The current number of accounts under this



29
30
31
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 29

def 
  @account_count
end

#max_account_countInteger

subscription.

Returns:

  • (Integer)

    The maximum supported number of accounts under this



25
26
27
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 25

def 
  @max_account_count
end

#migration_stateBoolean

maintenance state.

Returns:

  • (Boolean)

    The Boolean value of true or false to indicate the



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

#stateSubscriptionState

include: ‘Registered’, ‘Suspended’, ‘Deleted’, ‘Unregistered’, ‘Warned’

Returns:



21
22
23
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/capability_information.rb', line 21

def state
  @state
end

#subscription_idObject

subscription.

Returns:

  • The subscription credentials that uniquely identifies the



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

.mapperObject

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