// Instantiate a GCP storage account

        public static Storage GCP(String jsonFile, String projectId)
        {
            return(StorageAccount.GCP(jsonFile, projectId).Storage);
        }
 public static Storage AWS(String endpoint)
 {
     return(StorageAccount.AWS(endpoint).Storage);
 }
        // Instantiate an Azure storage account

        public static Storage Azure(String accountId, String accountKey)
        {
            return(StorageAccount.Azure(accountId, accountKey).Storage);
        }
        // Instantiate an AWS storage account

        public static Storage AWS(String accessKey, String secretKey, String endpoint)
        {
            return(StorageAccount.AWS(accessKey, secretKey, endpoint).Storage);
        }