shlogg · Early preview
Chuongmep @chuongmep

APS SDK For .NET: Create Buckets, Upload Files & Manage Data

Autodesk APS SDK for .NET helps devs create apps with Model Derivative, Data Mgmt & OSS services. Create buckets, upload/download objects & manage data with ease!

The Autodesk Platform Services (APS) SDK for .NET helps .NET developer create applications that leverage the various APS services: Model Derivative, Data Management, OSS, Webhooks. More services soon.
Buckets are virtual container within the Object Storage Service (OSS), which you can use to store and manage objects (files) in the cloud.
First, you need to install the package aps-sdk-net library :

  <PackageReference Include="Autodesk.Oss" Version="2.0.0" />

    
    

    
    




  
  
  Create a Bucket

So now you can use some code like this to create an bucket:

using Autodesk.Oss.Model...