gitextract_neutf5we/ ├── .devcontainer/ │ ├── Dockerfile │ └── devcontainer.json ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── codeql-analysis.yml │ ├── pre-commit.yml │ └── test.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── autogen.sh ├── config.py ├── diagrams/ │ ├── __init__.py │ ├── alibabacloud/ │ │ ├── __init__.py │ │ ├── analytics.py │ │ ├── application.py │ │ ├── communication.py │ │ ├── compute.py │ │ ├── database.py │ │ ├── iot.py │ │ ├── network.py │ │ ├── security.py │ │ ├── storage.py │ │ └── web.py │ ├── aws/ │ │ ├── __init__.py │ │ ├── analytics.py │ │ ├── ar.py │ │ ├── blockchain.py │ │ ├── business.py │ │ ├── compute.py │ │ ├── cost.py │ │ ├── database.py │ │ ├── devtools.py │ │ ├── enablement.py │ │ ├── enduser.py │ │ ├── engagement.py │ │ ├── game.py │ │ ├── general.py │ │ ├── integration.py │ │ ├── iot.py │ │ ├── management.py │ │ ├── media.py │ │ ├── migration.py │ │ ├── ml.py │ │ ├── mobile.py │ │ ├── network.py │ │ ├── quantum.py │ │ ├── robotics.py │ │ ├── satellite.py │ │ ├── security.py │ │ └── storage.py │ ├── azure/ │ │ ├── __init__.py │ │ ├── aimachinelearning.py │ │ ├── analytics.py │ │ ├── appservices.py │ │ ├── azureecosystem.py │ │ ├── azurestack.py │ │ ├── blockchain.py │ │ ├── compute.py │ │ ├── containers.py │ │ ├── database.py │ │ ├── databases.py │ │ ├── devops.py │ │ ├── general.py │ │ ├── hybridmulticloud.py │ │ ├── identity.py │ │ ├── integration.py │ │ ├── intune.py │ │ ├── iot.py │ │ ├── managementgovernance.py │ │ ├── menu.py │ │ ├── migrate.py │ │ ├── migration.py │ │ ├── mixedreality.py │ │ ├── ml.py │ │ ├── mobile.py │ │ ├── monitor.py │ │ ├── network.py │ │ ├── networking.py │ │ ├── newicons.py │ │ ├── other.py │ │ ├── security.py │ │ ├── storage.py │ │ └── web.py │ ├── base/ │ │ └── __init__.py │ ├── c4/ │ │ └── __init__.py │ ├── cli.py │ ├── custom/ │ │ └── __init__.py │ ├── digitalocean/ │ │ ├── __init__.py │ │ ├── compute.py │ │ ├── database.py │ │ ├── network.py │ │ └── storage.py │ ├── elastic/ │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── beats.py │ │ ├── elasticsearch.py │ │ ├── enterprisesearch.py │ │ ├── observability.py │ │ ├── orchestration.py │ │ ├── saas.py │ │ └── security.py │ ├── firebase/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── develop.py │ │ ├── extentions.py │ │ ├── grow.py │ │ └── quality.py │ ├── gcp/ │ │ ├── __init__.py │ │ ├── analytics.py │ │ ├── api.py │ │ ├── compute.py │ │ ├── database.py │ │ ├── devtools.py │ │ ├── iot.py │ │ ├── management.py │ │ ├── migration.py │ │ ├── ml.py │ │ ├── network.py │ │ ├── operations.py │ │ ├── security.py │ │ └── storage.py │ ├── generic/ │ │ ├── __init__.py │ │ ├── blank.py │ │ ├── compute.py │ │ ├── database.py │ │ ├── device.py │ │ ├── network.py │ │ ├── os.py │ │ ├── place.py │ │ ├── storage.py │ │ └── virtualization.py │ ├── gis/ │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── cplusplus.py │ │ ├── data.py │ │ ├── database.py │ │ ├── desktop.py │ │ ├── format.py │ │ ├── geocoding.py │ │ ├── georchestra.py │ │ ├── java.py │ │ ├── javascript.py │ │ ├── mobile.py │ │ ├── ogc.py │ │ ├── organization.py │ │ ├── python.py │ │ ├── routing.py │ │ ├── server.py │ │ └── toolkit.py │ ├── ibm/ │ │ ├── __init__.py │ │ ├── analytics.py │ │ ├── applications.py │ │ ├── blockchain.py │ │ ├── compute.py │ │ ├── data.py │ │ ├── devops.py │ │ ├── general.py │ │ ├── infrastructure.py │ │ ├── management.py │ │ ├── network.py │ │ ├── security.py │ │ ├── social.py │ │ ├── storage.py │ │ └── user.py │ ├── k8s/ │ │ ├── __init__.py │ │ ├── chaos.py │ │ ├── clusterconfig.py │ │ ├── compute.py │ │ ├── controlplane.py │ │ ├── ecosystem.py │ │ ├── group.py │ │ ├── infra.py │ │ ├── network.py │ │ ├── others.py │ │ ├── podconfig.py │ │ ├── rbac.py │ │ └── storage.py │ ├── oci/ │ │ ├── __init__.py │ │ ├── compute.py │ │ ├── connectivity.py │ │ ├── database.py │ │ ├── devops.py │ │ ├── governance.py │ │ ├── monitoring.py │ │ ├── network.py │ │ ├── security.py │ │ └── storage.py │ ├── onprem/ │ │ ├── __init__.py │ │ ├── aggregator.py │ │ ├── analytics.py │ │ ├── auth.py │ │ ├── cd.py │ │ ├── certificates.py │ │ ├── ci.py │ │ ├── client.py │ │ ├── compute.py │ │ ├── container.py │ │ ├── database.py │ │ ├── dns.py │ │ ├── etl.py │ │ ├── gitops.py │ │ ├── groupware.py │ │ ├── iac.py │ │ ├── identity.py │ │ ├── inmemory.py │ │ ├── logging.py │ │ ├── messaging.py │ │ ├── mlops.py │ │ ├── monitoring.py │ │ ├── network.py │ │ ├── proxmox.py │ │ ├── queue.py │ │ ├── registry.py │ │ ├── search.py │ │ ├── security.py │ │ ├── storage.py │ │ ├── tracing.py │ │ ├── vcs.py │ │ └── workflow.py │ ├── openstack/ │ │ ├── __init__.py │ │ ├── adjacentenablers.py │ │ ├── apiproxies.py │ │ ├── applicationlifecycle.py │ │ ├── baremetal.py │ │ ├── billing.py │ │ ├── compute.py │ │ ├── containerservices.py │ │ ├── deployment.py │ │ ├── frontend.py │ │ ├── lifecyclemanagement.py │ │ ├── monitoring.py │ │ ├── multiregion.py │ │ ├── networking.py │ │ ├── nfv.py │ │ ├── operations.py │ │ ├── optimization.py │ │ ├── orchestration.py │ │ ├── packaging.py │ │ ├── sharedservices.py │ │ ├── storage.py │ │ ├── user.py │ │ └── workloadprovisioning.py │ ├── outscale/ │ │ ├── __init__.py │ │ ├── compute.py │ │ ├── network.py │ │ ├── security.py │ │ └── storage.py │ ├── programming/ │ │ ├── __init__.py │ │ ├── flowchart.py │ │ ├── framework.py │ │ ├── language.py │ │ └── runtime.py │ └── saas/ │ ├── __init__.py │ ├── alerting.py │ ├── analytics.py │ ├── automation.py │ ├── cdn.py │ ├── chat.py │ ├── communication.py │ ├── crm.py │ ├── filesharing.py │ ├── identity.py │ ├── logging.py │ ├── media.py │ ├── payment.py │ ├── recommendation.py │ ├── security.py │ └── social.py ├── docker/ │ └── dev/ │ └── Dockerfile ├── docs/ │ ├── getting-started/ │ │ ├── examples.md │ │ └── installation.md │ ├── guides/ │ │ ├── cluster.md │ │ ├── diagram.md │ │ ├── edge.md │ │ └── node.md │ └── nodes/ │ ├── alibabacloud.md │ ├── aws.md │ ├── azure.md │ ├── c4.md │ ├── custom.md │ ├── digitalocean.md │ ├── elastic.md │ ├── firebase.md │ ├── gcp.md │ ├── generic.md │ ├── gis.md │ ├── ibm.md │ ├── k8s.md │ ├── oci.md │ ├── onprem.md │ ├── openstack.md │ ├── outscale.md │ ├── programming.md │ └── saas.md ├── pyproject.toml ├── scripts/ │ ├── __init__.py │ ├── generate.py │ └── resource.py ├── templates/ │ ├── apidoc.tmpl │ ├── apidoc_custom.tmpl │ └── module.tmpl ├── tests/ │ ├── __init__.py │ ├── test_c4.py │ ├── test_cli.py │ └── test_diagram.py └── website/ ├── core/ │ └── Footer.js ├── i18n/ │ └── en.json ├── package.json ├── pages/ │ └── en/ │ └── index.js ├── publish.sh ├── sidebars.json ├── siteConfig.js └── static/ └── css/ └── custom.css