Implementation of the DigitalOcean API (v2) for .NET Standard 2+
DigitalOcean.API is available for install from NuGet and the GitHub Package Registry.
dotnet add package DigitalOcean.API
varclient=newDigitalOceanClient("api_token");varrequest=newDroplet{Name="example.com",Region="nyc3",Size="s-1vcpu-1gb",Image="ubuntu-16-04-x64",SshKeys=newList<object>{107149},Backups=false,Ipv6=true,Tags=newList<string>{"web"}};vardroplet=awaitclient.Droplets.Create(request);Check out DigitalOcean's documentation of their API to see all possible interactions.
This project is licensed under the MIT License - see the LICENSE.md file for details.
