forked from mingrammer/diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(provider): added DigitalOcean provider (mingrammer#621)
* Added DigitalOcean provider * Fix PR comment * Reran the autogen script Co-authored-by: Chris Skaaning <[email protected]>
- Loading branch information
1 parent
4c5cacd
commit 51e7303
Showing
35 changed files
with
210 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _DigitalOcean | ||
|
||
|
||
class _Compute(_DigitalOcean): | ||
_type = "compute" | ||
_icon_dir = "resources/digitalocean/compute" | ||
|
||
|
||
class Containers(_Compute): | ||
_icon = "containers.png" | ||
|
||
|
||
class Docker(_Compute): | ||
_icon = "docker.png" | ||
|
||
|
||
class DropletConnect(_Compute): | ||
_icon = "droplet-connect.png" | ||
|
||
|
||
class DropletSnapshot(_Compute): | ||
_icon = "droplet-snapshot.png" | ||
|
||
|
||
class Droplet(_Compute): | ||
_icon = "droplet.png" | ||
|
||
|
||
class K8SCluster(_Compute): | ||
_icon = "k8s-cluster.png" | ||
|
||
|
||
class K8SNodePool(_Compute): | ||
_icon = "k8s-node-pool.png" | ||
|
||
|
||
class K8SNode(_Compute): | ||
_icon = "k8s-node.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _DigitalOcean | ||
|
||
|
||
class _Database(_DigitalOcean): | ||
_type = "database" | ||
_icon_dir = "resources/digitalocean/database" | ||
|
||
|
||
class DbaasPrimaryStandbyMore(_Database): | ||
_icon = "dbaas-primary-standby-more.png" | ||
|
||
|
||
class DbaasPrimary(_Database): | ||
_icon = "dbaas-primary.png" | ||
|
||
|
||
class DbaasReadOnly(_Database): | ||
_icon = "dbaas-read-only.png" | ||
|
||
|
||
class DbaasStandby(_Database): | ||
_icon = "dbaas-standby.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _DigitalOcean | ||
|
||
|
||
class _Network(_DigitalOcean): | ||
_type = "network" | ||
_icon_dir = "resources/digitalocean/network" | ||
|
||
|
||
class Certificate(_Network): | ||
_icon = "certificate.png" | ||
|
||
|
||
class DomainRegistration(_Network): | ||
_icon = "domain-registration.png" | ||
|
||
|
||
class Domain(_Network): | ||
_icon = "domain.png" | ||
|
||
|
||
class Firewall(_Network): | ||
_icon = "firewall.png" | ||
|
||
|
||
class FloatingIp(_Network): | ||
_icon = "floating-ip.png" | ||
|
||
|
||
class InternetGateway(_Network): | ||
_icon = "internet-gateway.png" | ||
|
||
|
||
class LoadBalancer(_Network): | ||
_icon = "load-balancer.png" | ||
|
||
|
||
class ManagedVpn(_Network): | ||
_icon = "managed-vpn.png" | ||
|
||
|
||
class Vpc(_Network): | ||
_icon = "vpc.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _DigitalOcean | ||
|
||
|
||
class _Storage(_DigitalOcean): | ||
_type = "storage" | ||
_icon_dir = "resources/digitalocean/storage" | ||
|
||
|
||
class Folder(_Storage): | ||
_icon = "folder.png" | ||
|
||
|
||
class Space(_Storage): | ||
_icon = "space.png" | ||
|
||
|
||
class VolumeSnapshot(_Storage): | ||
_icon = "volume-snapshot.png" | ||
|
||
|
||
class Volume(_Storage): | ||
_icon = "volume.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
id: digitalocean | ||
title: DigitalOcean | ||
--- | ||
|
||
Node classes list of digitalocean provider. | ||
|
||
## digitalocean.compute | ||
|
||
- **diagrams.digitalocean.compute.Containers** | ||
- **diagrams.digitalocean.compute.Docker** | ||
- **diagrams.digitalocean.compute.DropletConnect** | ||
- **diagrams.digitalocean.compute.DropletSnapshot** | ||
- **diagrams.digitalocean.compute.Droplet** | ||
- **diagrams.digitalocean.compute.K8SCluster** | ||
- **diagrams.digitalocean.compute.K8SNodePool** | ||
- **diagrams.digitalocean.compute.K8SNode** | ||
|
||
## digitalocean.database | ||
|
||
- **diagrams.digitalocean.database.DbaasPrimaryStandbyMore** | ||
- **diagrams.digitalocean.database.DbaasPrimary** | ||
- **diagrams.digitalocean.database.DbaasReadOnly** | ||
- **diagrams.digitalocean.database.DbaasStandby** | ||
|
||
## digitalocean.network | ||
|
||
- **diagrams.digitalocean.network.Certificate** | ||
- **diagrams.digitalocean.network.DomainRegistration** | ||
- **diagrams.digitalocean.network.Domain** | ||
- **diagrams.digitalocean.network.Firewall** | ||
- **diagrams.digitalocean.network.FloatingIp** | ||
- **diagrams.digitalocean.network.InternetGateway** | ||
- **diagrams.digitalocean.network.LoadBalancer** | ||
- **diagrams.digitalocean.network.ManagedVpn** | ||
- **diagrams.digitalocean.network.Vpc** | ||
|
||
## digitalocean.storage | ||
|
||
- **diagrams.digitalocean.storage.Folder** | ||
- **diagrams.digitalocean.storage.Space** | ||
- **diagrams.digitalocean.storage.VolumeSnapshot** | ||
- **diagrams.digitalocean.storage.Volume** |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters