# Aspose.Storage Cloud SDK for Perl

This repository contains Aspose.Storage Cloud SDK for Perl source code. This SDK allows you to work with Aspose.Storage Cloud REST APIs in your Perl applications quickly and easily. 

## How to use the SDK?

The complete source code is available in this repository folder. For more details, please visit our [documentation website](http://www.aspose.com/docs/display/totalcloud/How+to+Setup+Aspose.Storage+Cloud+SDK+for+perl).

## Quick SDK Tutorial
```javascript

use lib 'lib';
use strict;
use warnings;
use AsposeStorageCloud::StorageApi;
use AsposeStorageCloud::ApiClient;
use AsposeStorageCloud::Configuration;
use AsposeStorageCloud::Object::DiscUsage;

$AsposeStorageCloud::Configuration::app_sid = 'XXX';
$AsposeStorageCloud::Configuration::api_key = 'XXX';

#Instantiate Aspose.Storage API SDK
my $storageApi = AsposeStorageCloud::StorageApi->new();

#invoke Aspose.Storage Cloud SDK API to get Disc Usage
my $response = $storageApi->GetDiscUsage();

print "\nUsedSize :: $response->{'DiscUsage'}->{'UsedSize'}";

```