class Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageProfile

The storage profile.

Attributes

storageaccounts[RW]

@return [Array<StorageAccount>] The list of storage accounts in the cluster.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_profile.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'StorageProfile',
    type: {
      name: 'Composite',
      class_name: 'StorageProfile',
      model_properties: {
        storageaccounts: {
          client_side_validation: true,
          required: false,
          serialized_name: 'storageaccounts',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StorageAccountElementType',
                type: {
                  name: 'Composite',
                  class_name: 'StorageAccount'
                }
            }
          }
        }
      }
    }
  }
end