# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::MachineLearning module Models # # Access information for a storage account. # class StorageAccount include MsRestAzure include MsRest::JSONable # @return [String] Specifies the name of the storage account. attr_accessor :name # @return [String] Specifies the key used to access the storage account. attr_accessor :key # # Mapper for StorageAccount class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'StorageAccount', type: { name: 'Composite', class_name: 'StorageAccount', model_properties: { name: { required: false, serialized_name: 'name', type: { name: 'String' } }, key: { required: false, serialized_name: 'key', type: { name: 'String' } } } } } end end end end