DigitalOcean Spaces API permits you to manage object storage, allowing for the storage and serving of massive amounts of data. This API is great for backing up, archiving, and providing public access to data or assets. On Pipedream, you can use this API to automate file operations like uploads, downloads, and deletions, as well as manage permissions and metadata. You can integrate it with other services for end-to-end workflow automation.
import { S3 } from "@aws-sdk/client-s3";
import { ListBucketsCommand } from "@aws-sdk/client-s3";
export default defineComponent({
props: {
digitalocean_spaces: {
type: "app",
app: "digitalocean_spaces"
}
},
async run({ steps, $ }) {
console.log(this.digitalocean_spaces.$auth)
const s3Client = new S3({
forcePathStyle: false, // Configures to use subdomain/virtual calling format.
endpoint: `https://${this.digitalocean_spaces.$auth.region}.digitaloceanspaces.com`,
region: "us-east-1",
credentials: {
accessKeyId: this.digitalocean_spaces.$auth.key,
secretAccessKey: this.digitalocean_spaces.$auth.secret
}
});
const data = await s3Client.send(new ListBucketsCommand({}));
return data.Buckets;
},
})
Automated Backup to DigitalOcean Spaces: Trigger a workflow on a schedule to back up important files from your server to a Space, ensuring data is always safe and versioned.
Media File Processing and Storage: When a new image or video is uploaded to a Space, trigger a workflow that utilizes a service like AWS Lambda to process the media then update the metadata in the Space.
Static Website Content Deployment: Upon pushing new content to a GitHub repository, automatically deploy the changes to your DigitalOcean Space where your static site content is hosted for seamless updates.
Accepts a file path starting from /tmp, then uploads as a file to DigitalOcean Spaces. See the docs.
Accepts a base64-encoded string and a filename, then uploads as a file to DigitalOcean Spaces. See the docs.
Accepts a download link and a filename, downloads it, then uploads to DigitalOcean Spaces. See the docs.
DigitalOcean Spaces uses API keys for authentication. When you connect your DigitalOcean Spaces account, Pipedream securely stores the keys so you can easily authenticate to DigitalOcean Spaces APIs in both code and no-code steps.
To retrieve your Access Keys,
To see available regions for Spaces, go to Other product availability table within the Digital Ocean's Regional Availability Matrix.