# File lib/fog/azure/models/compute/storage_account.rb, line 47
        def save
          requires :name
          requires_one :location, :affinity_group

          options = {
            :label => label,
            :location => location,
            :description => description,
            :affinity_group_name => affinity_group,
            :geo_replication_enabled => geo_replication_enabled,
            :extended_properties => extended_properties,
          }

          service.create_storage_account(name, options)
        end