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.
Merge branch 'mhmdio/master' into terraform-provider
* mhmdio/master: bump: up to version 0.21.1 feat(output): Generate dot file and support multi outformat.(mingrammer#441) Re (mingrammer#592) feat: add digitalocean provider (mingrammer#646) docs(website): update docs bump: up to version 0.21.0 docs(readme): update badges docs(readme): update docs(readme): add digital ocean badge feat(provider): added DigitalOcean provider (mingrammer#621) feat(node): Dremio Service in OnPrem.Analytics (mingrammer#451) chore(deps): bump shelljs from 0.8.4 to 0.8.5 in /website (mingrammer#641) feat(node): add Nagios in OnPrem monitoring (mingrammer#638) feat(node): adding GCP API gateway image (mingrammer#636) feat(node): add chatbot icon (mingrammer#633) chore(deps): bump graphviz from 0.17 to 0.19.1 (mingrammer#635) feat(node): added Dapr programming runtime (mingrammer#591) docs: add mac dev guide (mingrammer#576) docs(readme): add Python 3.9 to badges (mingrammer#584) 👌 IMPROVE: HashiCorp Icons 📦 NEW: Add remaining HashiCorp Icons
- Loading branch information
Showing
67 changed files
with
18,769 additions
and
6,641 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
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,12 @@ | ||
""" | ||
DigitalOcean provides a set of services for DigitalOcean provider. | ||
""" | ||
|
||
from diagrams import Node | ||
|
||
|
||
class _DigitalOcean(Node): | ||
_provider = "digitalocean" | ||
_icon_dir = "resources/digitalocean" | ||
|
||
fontcolor = "#ffffff" |
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
Oops, something went wrong.