-
-
Notifications
You must be signed in to change notification settings - Fork 75
Vultr Storage
In order to use Vultr storage you need to reference the FluentStorage.AWS package first. The provider wraps around the standard AWS SDK.
You can use the VultrStorage factory class to connect to Vultr Object Storage storage servers (S3 compatible).
IStore store = VultrStorage.FromCredentials(
accessKeyId, secretAccessKey, bucketName, hostName);Where hostName is the Vultr Storage endpoint hostname (e.g. sgp1.vultrobjects.com).
To create with a connection string, first reference the module:
AwsS3Storage.Use();Then construct using the following format:
IStore store = StorageFactory.FromConnectionString("vultr://keyId=...;key=...;bucket=...;hostName=...");where:
- keyId is (optional) access key ID.
- key is (optional) secret access key.
- bucket is bucket name.
-
hostName is the Vultr Storage endpoint hostname (e.g.
sgp1.vultrobjects.com).
Use our simple polycloud API to perform file and object manipulation operations.
If you already have credentials in the local credentials file generated by AWS CLI, you can also use them to connect to a bucket with FluentStorage. Look here for more details.
Call the IStore.GetClient() method to return the native SDK client and perform any native operations.
- AWS S3 Storage
- Azure Blob Storage
- Azure File Storage
- Azure Data Lake
- Azure Key Vault
- GCP Storage
- Cloudflare R2 Storage
- MinIO Storage
- DigitalOcean Spaces
- Wasabi Storage
- Backblaze B2 Storage
- Hetzner Storage
- Vultr Storage
- MongoDB GridFS Storage
- Alibaba OSS Storage
- FTP Storage
- SFTP Storage
- Git Repository Storage