Class: Azure::DataLakeAnalytics::Mgmt::V2015_10_01_preview::Models::DataLakeAnalyticsAccount
- Inherits:
-
Object
- Object
- Azure::DataLakeAnalytics::Mgmt::V2015_10_01_preview::Models::DataLakeAnalyticsAccount
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/data_lake_analytics_account.rb
Overview
A Data Lake Analytics account object, containing all information associated with the named Data Lake Analytics account.
Instance Attribute Summary collapse
-
#id ⇒ String
The account subscription ID.
-
#location ⇒ String
The account regional location.
-
#name ⇒ String
The account name.
-
#properties ⇒ DataLakeAnalyticsAccountProperties
Data Lake Analytics all properties are specific to each resource provider.
-
#tags ⇒ Hash{String => String}
The value of custom properties.
-
#type ⇒ String
The namespace and type of the account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DataLakeAnalyticsAccount class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Returns the account subscription ID.
26 27 28 |
# File 'lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/data_lake_analytics_account.rb', line 26 def id @id end |
#location ⇒ String
Returns the account regional location.
17 18 19 |
# File 'lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/data_lake_analytics_account.rb', line 17 def location @location end |
#name ⇒ String
Returns the account name.
20 21 22 |
# File 'lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/data_lake_analytics_account.rb', line 20 def name @name end |
#properties ⇒ DataLakeAnalyticsAccountProperties
Data Lake Analytics all properties are specific to each resource provider.
34 35 36 |
# File 'lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/data_lake_analytics_account.rb', line 34 def properties @properties end |
#tags ⇒ Hash{String => String}
Returns the value of custom properties.
29 30 31 |
# File 'lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/data_lake_analytics_account.rb', line 29 def @tags end |
#type ⇒ String
Returns the namespace and type of the account.
23 24 25 |
# File 'lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/data_lake_analytics_account.rb', line 23 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for DataLakeAnalyticsAccount class as Ruby Hash. This will be used for serialization/deserialization.
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/data_lake_analytics_account.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DataLakeAnalyticsAccount', type: { name: 'Composite', class_name: 'DataLakeAnalyticsAccount', model_properties: { location: { client_side_validation: true, required: false, serialized_name: 'location', 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' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Composite', class_name: 'DataLakeAnalyticsAccountProperties' } } } } } end |