class Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::UpdateDataLakeStoreWithAccountParameters

The parameters used to update a Data Lake Store account while updating a Data Lake Analytics account.

Attributes

name[RW]

@return [String] The unique name of the Data Lake Store account to update.

suffix[RW]

@return [String] The optional suffix for the Data Lake Store account.

Private Class Methods

mapper() click to toggle source

Mapper for UpdateDataLakeStoreWithAccountParameters class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_data_lake_store_with_account_parameters.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'UpdateDataLakeStoreWithAccountParameters',
    type: {
      name: 'Composite',
      class_name: 'UpdateDataLakeStoreWithAccountParameters',
      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