Class: Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::AddDataLakeStoreWithAccountParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/add_data_lake_store_with_account_parameters.rb

Overview

The parameters used to add a new Data Lake Store account while creating a new Data Lake Analytics account.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#nameString

Returns The unique name of the Data Lake Store account to add.

Returns:

  • (String)

    The unique name of the Data Lake Store account to add.



17
18
19
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/add_data_lake_store_with_account_parameters.rb', line 17

def name
  @name
end

#suffixString

Returns The optional suffix for the Data Lake Store account.

Returns:

  • (String)

    The optional suffix for the Data Lake Store account.



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

def suffix
  @suffix
end

Class Method Details

.mapperObject

Mapper for AddDataLakeStoreWithAccountParameters 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
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/add_data_lake_store_with_account_parameters.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AddDataLakeStoreWithAccountParameters',
    type: {
      name: 'Composite',
      class_name: 'AddDataLakeStoreWithAccountParameters',
      model_properties: {
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        suffix: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.suffix',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end