Example Backup Script:
exec master.dbo.xp_backup_database
@Database = N'ACT2a'
, @backupname = N'ACT2a - Full Database Backup'
, @desc = N'Full backup of ACT2a on %Y-%m-%d %I:%M:%S %p'
, @compressionlevel = 8
, @FileName = N'support\act2a.bak'
, @CloudVendor = N'AzureBlob'
, @CloudAccessKeyEnc = N'ntd10isizPFXRZAiS/glKj' -- replace with your access key
, @CloudSecretKeyEnc = N'Ozh+fLNw9AWxI4/PBRrA==' -- replace with your secret key
, @CloudBucketName = N'litespeedbackups'
, @AzureBlobType = N'Block'
, @UseSSL = 1
, @CloudAutoStripingThreshold = 1
, @init = 1
, @with = N'STATS = 10'
More information can be found in the LiteSpeed User Guide and in the LiteSpeed Help file. To access the help file, press F1 from within the LiteSpeed Console.