@likec4/language-server 1.42.1 → 1.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/package.json +1 -1
- package/browser-worker/package.json +1 -1
- package/dist/LikeC4LanguageServices.d.ts +12 -19
- package/dist/LikeC4LanguageServices.js +182 -0
- package/dist/Rpc.js +245 -0
- package/dist/ast.d.ts +10 -6
- package/dist/ast.js +253 -0
- package/dist/browser-worker.js +4 -0
- package/dist/browser.js +35 -0
- package/dist/bundled.js +42 -0
- package/dist/bundled.mjs +3830 -4172
- package/dist/documentation/documentation-provider.js +51 -0
- package/dist/documentation/index.js +1 -0
- package/dist/empty.js +2 -0
- package/dist/filesystem/ChokidarWatcher.js +97 -0
- package/dist/filesystem/FileSystemWatcher.js +14 -0
- package/dist/filesystem/LikeC4FileSystem.d.ts +1 -2
- package/dist/filesystem/LikeC4FileSystem.js +126 -0
- package/dist/filesystem/index.d.ts +26 -0
- package/dist/filesystem/index.js +29 -0
- package/dist/formatting/LikeC4Formatter.js +637 -0
- package/dist/formatting/utils.js +18 -0
- package/dist/generated/ast.d.ts +19 -3
- package/dist/generated/ast.js +2155 -0
- package/dist/generated/grammar.js +7 -0
- package/dist/generated/module.d.ts +6 -1
- package/dist/generated/module.js +27 -0
- package/dist/generated-lib/{icons.mjs → icons.js} +11 -7
- package/dist/index.d.ts +7 -0
- package/dist/index.js +53 -0
- package/dist/{likec4lib.mjs → likec4lib.js} +3 -3
- package/dist/logger.js +81 -0
- package/dist/lsp/CodeActionProvider.d.ts +14 -0
- package/dist/lsp/CodeActionProvider.js +33 -0
- package/dist/lsp/CodeLensProvider.js +44 -0
- package/dist/lsp/CompletionProvider.d.ts +3 -1
- package/dist/lsp/CompletionProvider.js +200 -0
- package/dist/lsp/DocumentHighlightProvider.js +10 -0
- package/dist/lsp/DocumentLinkProvider.js +58 -0
- package/dist/lsp/DocumentSymbolProvider.js +306 -0
- package/dist/lsp/HoverProvider.js +106 -0
- package/dist/lsp/RenameProvider.js +6 -0
- package/dist/lsp/SemanticTokenProvider.d.ts +5 -0
- package/dist/lsp/SemanticTokenProvider.js +257 -0
- package/dist/lsp/index.d.ts +1 -0
- package/dist/lsp/index.js +9 -0
- package/dist/mcp/MCPServerFactory.js +73 -0
- package/dist/mcp/NoopLikeC4MCPServer.js +17 -0
- package/dist/mcp/interfaces.js +5 -0
- package/dist/mcp/server/StdioLikeC4MCPServer.js +47 -0
- package/dist/mcp/server/StreamableLikeC4MCPServer.js +145 -0
- package/dist/mcp/server/WithMCPServer.js +56 -0
- package/dist/mcp/tools/_common.d.ts +8 -7
- package/dist/mcp/tools/_common.js +49 -0
- package/dist/mcp/tools/find-relationships.d.ts +7 -8
- package/dist/mcp/tools/find-relationships.js +150 -0
- package/dist/mcp/tools/list-projects.d.ts +3 -3
- package/dist/mcp/tools/list-projects.js +62 -0
- package/dist/mcp/tools/open-view.d.ts +6 -7
- package/dist/mcp/tools/open-view.js +52 -0
- package/dist/mcp/tools/read-deployment.d.ts +6 -7
- package/dist/mcp/tools/read-deployment.js +132 -0
- package/dist/mcp/tools/read-element.d.ts +6 -7
- package/dist/mcp/tools/read-element.js +194 -0
- package/dist/mcp/tools/read-project-summary.d.ts +5 -6
- package/dist/mcp/tools/read-project-summary.js +176 -0
- package/dist/mcp/tools/read-view.d.ts +6 -7
- package/dist/mcp/tools/read-view.js +203 -0
- package/dist/mcp/tools/search-element.d.ts +3 -3
- package/dist/mcp/tools/search-element.js +177 -0
- package/dist/mcp/utils.d.ts +2 -2
- package/dist/mcp/utils.js +48 -0
- package/dist/model/builder/MergedExtends.d.ts +2 -1
- package/dist/model/builder/MergedExtends.js +74 -0
- package/dist/model/builder/MergedSpecification.js +175 -0
- package/dist/model/builder/buildModel.js +176 -0
- package/dist/model/deployments-index.js +102 -0
- package/dist/model/fqn-index.js +250 -0
- package/dist/model/index.js +6 -0
- package/dist/model/model-builder.d.ts +13 -11
- package/dist/model/model-builder.js +234 -0
- package/dist/model/model-locator.d.ts +6 -5
- package/dist/model/model-locator.js +240 -0
- package/dist/model/model-parser-where.js +81 -0
- package/dist/model/model-parser.d.ts +318 -313
- package/dist/model/model-parser.js +119 -0
- package/dist/model/parser/Base.d.ts +3 -3
- package/dist/model/parser/Base.js +367 -0
- package/dist/model/parser/DeploymentModelParser.d.ts +3 -3
- package/dist/model/parser/DeploymentModelParser.js +176 -0
- package/dist/model/parser/DeploymentViewParser.d.ts +4 -4
- package/dist/model/parser/DeploymentViewParser.js +86 -0
- package/dist/model/parser/FqnRefParser.d.ts +3 -3
- package/dist/model/parser/FqnRefParser.js +382 -0
- package/dist/model/parser/GlobalsParser.d.ts +7 -7
- package/dist/model/parser/GlobalsParser.js +84 -0
- package/dist/model/parser/ImportsParser.d.ts +12 -13
- package/dist/model/parser/ImportsParser.js +24 -0
- package/dist/model/parser/ModelParser.d.ts +3 -3
- package/dist/model/parser/ModelParser.js +165 -0
- package/dist/model/parser/PredicatesParser.d.ts +3 -3
- package/dist/model/parser/PredicatesParser.js +45 -0
- package/dist/model/parser/SpecificationParser.d.ts +3 -3
- package/dist/model/parser/SpecificationParser.js +109 -0
- package/dist/model/parser/ValueConverter.js +12 -0
- package/dist/model/parser/ViewsParser.d.ts +4 -4
- package/dist/model/parser/ViewsParser.js +477 -0
- package/dist/model-change/ModelChanges.d.ts +6 -3
- package/dist/model-change/ModelChanges.js +102 -0
- package/dist/model-change/changeElementStyle.js +134 -0
- package/dist/model-change/changeViewLayout.d.ts +2 -2
- package/dist/model-change/changeViewLayout.js +28 -0
- package/dist/model-change/removeManualLayoutV1.d.ts +7 -0
- package/dist/model-change/removeManualLayoutV1.js +27 -0
- package/dist/module.d.ts +10 -5
- package/dist/module.js +143 -0
- package/dist/protocol.d.ts +1 -17
- package/dist/protocol.js +114 -0
- package/dist/references/index.js +3 -0
- package/dist/references/name-provider.js +37 -0
- package/dist/references/scope-computation.js +288 -0
- package/dist/references/scope-provider.d.ts +3 -3
- package/dist/references/scope-provider.js +242 -0
- package/dist/shared/NodeKindProvider.js +57 -0
- package/dist/shared/{WorkspaceSymbolProvider.mjs → WorkspaceSymbolProvider.js} +1 -1
- package/dist/shared/index.js +2 -0
- package/dist/test/index.js +1 -0
- package/dist/test/testServices.d.ts +16 -16
- package/dist/test/testServices.js +210 -0
- package/dist/utils/disposable.js +26 -0
- package/dist/utils/elementRef.d.ts +1 -1
- package/dist/utils/elementRef.js +27 -0
- package/dist/utils/fqnRef.js +63 -0
- package/dist/utils/index.js +35 -0
- package/dist/utils/printDocs.js +1 -0
- package/dist/utils/projectId.js +16 -0
- package/dist/utils/stringHash.js +5 -0
- package/dist/validation/DocumentValidator.js +17 -0
- package/dist/validation/_shared.js +26 -0
- package/dist/validation/deployment-checks.js +140 -0
- package/dist/validation/dynamic-view.js +67 -0
- package/dist/validation/element-ref.js +12 -0
- package/dist/validation/element.js +49 -0
- package/dist/validation/imports.js +46 -0
- package/dist/validation/index.d.ts +1 -1
- package/dist/validation/index.js +157 -0
- package/dist/validation/property-checks.js +108 -0
- package/dist/validation/relation.js +55 -0
- package/dist/validation/specification.js +190 -0
- package/dist/validation/view-predicates/fqn-expr-with.js +43 -0
- package/dist/validation/view-predicates/fqn-ref-expr.js +51 -0
- package/dist/validation/view-predicates/incoming.js +16 -0
- package/dist/validation/view-predicates/index.js +6 -0
- package/dist/validation/view-predicates/outgoing.js +20 -0
- package/dist/validation/view-predicates/relation-expr.js +46 -0
- package/dist/validation/view-predicates/relation-with.js +16 -0
- package/dist/validation/view.d.ts +1 -1
- package/dist/validation/view.js +42 -0
- package/dist/view-utils/assignNavigateTo.js +27 -0
- package/dist/view-utils/index.d.ts +1 -0
- package/dist/view-utils/index.js +2 -0
- package/dist/view-utils/manual-layout.d.ts +6 -0
- package/dist/view-utils/manual-layout.js +151 -0
- package/dist/views/ConfigurableLayouter.js +51 -0
- package/dist/views/LikeC4ManualLayouts.d.ts +28 -0
- package/dist/views/LikeC4ManualLayouts.js +132 -0
- package/dist/views/{likec4-views.d.ts → LikeC4Views.d.ts} +9 -8
- package/dist/views/LikeC4Views.js +200 -0
- package/dist/views/index.d.ts +4 -1
- package/dist/views/index.js +11 -0
- package/dist/workspace/AstNodeDescriptionProvider.js +15 -0
- package/dist/workspace/IndexManager.js +21 -0
- package/dist/workspace/LangiumDocuments.d.ts +1 -1
- package/dist/workspace/LangiumDocuments.js +58 -0
- package/dist/workspace/ProjectsManager.d.ts +8 -3
- package/dist/workspace/ProjectsManager.js +373 -0
- package/dist/workspace/WorkspaceManager.d.ts +3 -2
- package/dist/workspace/WorkspaceManager.js +93 -0
- package/dist/workspace/index.js +5 -0
- package/likec4lib/package.json +1 -1
- package/package.json +32 -31
- package/protocol/package.json +1 -1
- package/dist/LikeC4LanguageServices.mjs +0 -197
- package/dist/Rpc.mjs +0 -296
- package/dist/ast.mjs +0 -221
- package/dist/browser-worker.mjs +0 -2
- package/dist/browser.mjs +0 -32
- package/dist/documentation/documentation-provider.mjs +0 -48
- package/dist/documentation/index.mjs +0 -1
- package/dist/empty.mjs +0 -1
- package/dist/filesystem/ChokidarWatcher.mjs +0 -68
- package/dist/filesystem/FileSystemWatcher.mjs +0 -11
- package/dist/filesystem/LikeC4FileSystem.mjs +0 -64
- package/dist/filesystem/index.mjs +0 -19
- package/dist/formatting/LikeC4Formatter.mjs +0 -511
- package/dist/formatting/utils.mjs +0 -15
- package/dist/generated/ast.mjs +0 -2118
- package/dist/generated/grammar.mjs +0 -3
- package/dist/generated/module.mjs +0 -23
- package/dist/index.mjs +0 -50
- package/dist/logger.mjs +0 -82
- package/dist/lsp/CodeLensProvider.mjs +0 -42
- package/dist/lsp/CompletionProvider.mjs +0 -208
- package/dist/lsp/DocumentHighlightProvider.mjs +0 -10
- package/dist/lsp/DocumentLinkProvider.mjs +0 -53
- package/dist/lsp/DocumentSymbolProvider.mjs +0 -287
- package/dist/lsp/HoverProvider.mjs +0 -104
- package/dist/lsp/RenameProvider.mjs +0 -6
- package/dist/lsp/SemanticTokenProvider.mjs +0 -350
- package/dist/lsp/index.mjs +0 -7
- package/dist/mcp/MCPServerFactory.mjs +0 -70
- package/dist/mcp/NoopLikeC4MCPServer.mjs +0 -17
- package/dist/mcp/interfaces.mjs +0 -4
- package/dist/mcp/server/StdioLikeC4MCPServer.mjs +0 -46
- package/dist/mcp/server/StreamableLikeC4MCPServer.mjs +0 -153
- package/dist/mcp/server/WithMCPServer.mjs +0 -58
- package/dist/mcp/tools/_common.mjs +0 -42
- package/dist/mcp/tools/find-relationships.mjs +0 -151
- package/dist/mcp/tools/list-projects.mjs +0 -62
- package/dist/mcp/tools/open-view.mjs +0 -52
- package/dist/mcp/tools/read-deployment.mjs +0 -130
- package/dist/mcp/tools/read-element.mjs +0 -198
- package/dist/mcp/tools/read-project-summary.mjs +0 -178
- package/dist/mcp/tools/read-view.mjs +0 -205
- package/dist/mcp/tools/search-element.mjs +0 -171
- package/dist/mcp/utils.mjs +0 -47
- package/dist/model/builder/MergedExtends.mjs +0 -67
- package/dist/model/builder/MergedSpecification.mjs +0 -205
- package/dist/model/builder/assignTagColors.d.ts +0 -7
- package/dist/model/builder/assignTagColors.mjs +0 -51
- package/dist/model/builder/buildModel.mjs +0 -226
- package/dist/model/deployments-index.mjs +0 -100
- package/dist/model/fqn-index.mjs +0 -243
- package/dist/model/index.mjs +0 -6
- package/dist/model/model-builder.mjs +0 -285
- package/dist/model/model-locator.mjs +0 -239
- package/dist/model/model-parser-where.mjs +0 -81
- package/dist/model/model-parser.mjs +0 -127
- package/dist/model/parser/Base.mjs +0 -342
- package/dist/model/parser/DeploymentModelParser.mjs +0 -212
- package/dist/model/parser/DeploymentViewParser.mjs +0 -95
- package/dist/model/parser/FqnRefParser.mjs +0 -398
- package/dist/model/parser/GlobalsParser.mjs +0 -82
- package/dist/model/parser/ImportsParser.mjs +0 -28
- package/dist/model/parser/ModelParser.mjs +0 -190
- package/dist/model/parser/PredicatesParser.mjs +0 -45
- package/dist/model/parser/SpecificationParser.mjs +0 -120
- package/dist/model/parser/ValueConverter.mjs +0 -12
- package/dist/model/parser/ViewsParser.mjs +0 -490
- package/dist/model-change/ModelChanges.mjs +0 -89
- package/dist/model-change/changeElementStyle.mjs +0 -143
- package/dist/model-change/changeViewLayout.mjs +0 -32
- package/dist/model-change/saveManualLayout.d.ts +0 -11
- package/dist/model-change/saveManualLayout.mjs +0 -27
- package/dist/module.mjs +0 -180
- package/dist/protocol.mjs +0 -65
- package/dist/references/index.mjs +0 -3
- package/dist/references/name-provider.mjs +0 -39
- package/dist/references/scope-computation.mjs +0 -312
- package/dist/references/scope-provider.mjs +0 -239
- package/dist/shared/NodeKindProvider.mjs +0 -110
- package/dist/shared/index.mjs +0 -2
- package/dist/test/index.mjs +0 -1
- package/dist/test/testServices.mjs +0 -200
- package/dist/utils/disposable.mjs +0 -25
- package/dist/utils/elementRef.mjs +0 -20
- package/dist/utils/fqnRef.mjs +0 -57
- package/dist/utils/index.mjs +0 -33
- package/dist/utils/printDocs.mjs +0 -1
- package/dist/utils/projectId.mjs +0 -16
- package/dist/utils/stringHash.mjs +0 -5
- package/dist/validation/DocumentValidator.mjs +0 -16
- package/dist/validation/_shared.mjs +0 -25
- package/dist/validation/deployment-checks.mjs +0 -146
- package/dist/validation/dynamic-view.mjs +0 -67
- package/dist/validation/element-ref.mjs +0 -12
- package/dist/validation/element.mjs +0 -50
- package/dist/validation/imports.mjs +0 -25
- package/dist/validation/index.mjs +0 -180
- package/dist/validation/property-checks.mjs +0 -107
- package/dist/validation/relation.mjs +0 -53
- package/dist/validation/specification.mjs +0 -173
- package/dist/validation/view-predicates/fqn-expr-with.mjs +0 -43
- package/dist/validation/view-predicates/fqn-ref-expr.mjs +0 -53
- package/dist/validation/view-predicates/incoming.mjs +0 -16
- package/dist/validation/view-predicates/index.mjs +0 -6
- package/dist/validation/view-predicates/outgoing.mjs +0 -20
- package/dist/validation/view-predicates/relation-expr.mjs +0 -39
- package/dist/validation/view-predicates/relation-with.mjs +0 -16
- package/dist/validation/view.mjs +0 -25
- package/dist/view-utils/assignNavigateTo.mjs +0 -25
- package/dist/view-utils/index.mjs +0 -1
- package/dist/view-utils/manual-layout.mjs +0 -99
- package/dist/views/configurable-layouter.mjs +0 -51
- package/dist/views/index.mjs +0 -1
- package/dist/views/likec4-views.mjs +0 -166
- package/dist/workspace/AstNodeDescriptionProvider.mjs +0 -17
- package/dist/workspace/IndexManager.mjs +0 -17
- package/dist/workspace/LangiumDocuments.mjs +0 -53
- package/dist/workspace/ProjectsManager.mjs +0 -360
- package/dist/workspace/WorkspaceManager.mjs +0 -83
- package/dist/workspace/index.mjs +0 -5
- /package/dist/views/{configurable-layouter.d.ts → ConfigurableLayouter.d.ts} +0 -0
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
const icons = [...Object.entries({ "aws": ["activate", "alexa-for-business", "amplify", "apache-mxnet-on-aws", "api-gateway", "app-config", "app-flow", "app-mesh", "app-runner", "app-stream", "app-sync", "application-auto-scaling", "application-composer", "application-cost-profiler", "application-discovery-service", "application-migration-service", "artifact", "athena", "audit-manager", "augmented-ai-a2i", "aurora", "auto-scaling", "backint-agent", "backup", "batch", "billing-conductor", "bottlerocket", "braket", "budgets", "certificate-manager", "chatbot", "chime", "chime-sdk", "chime-voice-connector", "clean-rooms", "client-vpn", "cloud-control-api", "cloud-development-kit", "cloud-directory", "cloud-formation", "cloud-front", "cloud-hsm", "cloud-map", "cloud-search", "cloud-shell", "cloud-trail", "cloud-wan", "cloud-watch", "cloud9", "code-artifact", "code-build", "code-catalyst", "code-commit", "code-deploy", "code-guru", "code-pipeline", "code-star", "code-whisperer", "cognito", "command-line-interface", "comprehend", "comprehend-medical", "compute-optimizer", "config", "connect", "console-mobile-application", "control-tower", "corretto", "cost-and-usage-report", "cost-explorer", "data-exchange", "data-pipeline", "data-sync", "data-zone", "database-migration-service", "deep-composer", "deep-learning-amis", "deep-learning-containers", "deep-lens", "deep-racer", "detective", "dev-ops-guru", "device-farm", "direct-connect", "directory-service", "distro-for-open-telemetry", "document-db", "dynamo-db", "ec2", "ec2-auto-scaling", "ec2-image-builder", "ecs-anywhere", "efs", "eks-anywhere", "eks-cloud", "eks-distro", "elasti-cache", "elastic-beanstalk", "elastic-block-store", "elastic-container-registry", "elastic-container-service", "elastic-disaster-recovery", "elastic-fabric-adapter", "elastic-inference", "elastic-kubernetes-service", "elastic-load-balancing", "elastic-transcoder", "elemental-appliances-software", "elemental-conductor", "elemental-delta", "elemental-link", "elemental-live", "elemental-media-connect", "elemental-media-convert", "elemental-media-live", "elemental-media-package", "elemental-media-store", "elemental-media-tailor", "elemental-server", "emr", "event-bridge", "express-workflows", "fargate", "fault-injection-simulator", "file-cache", "fin-space", "firewall-manager", "forecast", "fraud-detector", "free-rtos", "fsx", "fsx-for-lustre", "fsx-for-net-app-ontap", "fsx-for-open-zfs", "fsx-for-wfs", "game-kit", "game-lift", "game-sparks", "genomics-cli", "global-accelerator", "glue", "glue-data-brew", "glue-elastic-views", "ground-station", "guard-duty", "health-lake", "honeycode", "iam-identity-center", "identity-and-access-management", "inspector", "interactive-video-service", "io-t-1-click", "io-t-analytics", "io-t-button", "io-t-core", "io-t-device-defender", "io-t-device-management", "io-t-edu-kit", "io-t-events", "io-t-express-link", "io-t-fleet-wise", "io-t-greengrass", "io-t-robo-runner", "io-t-site-wise", "io-t-things-graph", "io-t-twin-maker", "iq", "kendra", "key-management-service", "keyspaces", "kinesis", "kinesis-data-analytics", "kinesis-data-streams", "kinesis-firehose", "kinesis-video-streams", "lake-formation", "lambda", "launch-wizard", "lex", "license-manager", "lightsail", "local-zones", "location-service", "lookout-for-equipment", "lookout-for-metrics", "lookout-for-vision", "lumberyard", "macie", "mainframe-modernization", "managed-blockchain", "managed-grafana", "managed-service-for-prometheus", "managed-services", "managed-streaming-for-apache-kafka", "managed-workflows-for-apache-airflow", "management-console", "marketplace-dark", "marketplace-light", "memory-db-for-redis", "migration-evaluator", "migration-hub", "monitron", "mq", "neptune", "network-firewall", "neuron", "nice-dcv", "nice-engin-frame", "nimble-studio", "nitro-enclaves", "omics", "open-3d-engine", "open-search-service", "ops-works", "organizations", "outposts-family", "outposts-rack", "outposts-servers", "panorama", "parallel-cluster", "personal-health-dashboard", "personalize", "pinpoint", "pinpoint-apis", "polly", "private-5g", "private-certificate-authority", "private-link", "professional-services", "proton", "quantum-ledger-database", "quick-sight", "rds", "rds-on-vmware", "re-post", "red-hat-open-shift-service-on-aws", "redshift", "rekognition", "reserved-instance-reporting", "resilience-hub", "resource-access-manager", "resource-explorer", "robo-maker", "route-53", "s3-on-outposts", "sage-maker", "sage-maker-ground-truth", "sage-maker-studio-lab", "savings-plans", "secrets-manager", "security-hub", "security-lake", "server-migration-service", "serverless-application-repository", "service-catalog", "service-management-connector", "shield", "signer", "sim-space-weaver", "simple-email-service", "simple-notification-service", "simple-queue-service", "simple-storage-service", "simple-storage-service-glacier", "site-to-site-vpn", "snowball", "snowball-edge", "snowcone", "snowmobile", "step-functions", "storage-gateway", "sumerian", "supply-chain", "support", "systems-manager", "tensor-flow-on-aws", "textract", "thinkbox-deadline", "thinkbox-frost", "thinkbox-krakatoa", "thinkbox-sequoia", "thinkbox-stoke", "thinkbox-xmesh", "timestream", "tools-and-sdks", "torch-serve", "training-certification", "transcribe", "transfer-family", "transit-gateway", "translate", "trusted-advisor", "verified-access", "verified-permissions", "virtual-private-cloud", "vmware-cloud-on-aws", "vpc-lattice", "waf", "wavelength", "well-architected-tool", "wickr", "work-docs", "work-docs-sdk", "work-link", "work-mail", "work-spaces-family", "x-ray"], "azure": ["abs-member", "active-directory-connect-health", "activity-log", "administrative-units", "advisor", "ai-at-edge", "ai-studio", "aks-automatic", "aks-istio", "alerts", "all-resources", "analysis-services", "anomaly-detector", "api-center", "api-connections", "api-management-services", "api-proxy", "app-compliance-automation", "app-configuration", "app-registrations", "app-service-certificates", "app-service-domains", "app-service-environments", "app-service-plans", "app-services", "app-space", "app-space-component", "applens", "application-gateway-containers", "application-gateways", "application-group", "application-insights", "application-security-groups", "aquila", "arc-data-services", "arc-kubernetes", "arc-machines", "arc-postgre-sql", "arc-sql-managed-instance", "arc-sql-server", "atm-multistack", "auto-scale", "automanaged-vm", "automation-accounts", "availability-sets", "avs-vm", "azure-a", "azure-ad-b2c", "azure-api-for-fhir", "azure-applied-ai-services", "azure-arc", "azure-attestation", "azure-backup-center", "azure-blockchain-service", "azure-center-for-sap", "azure-chaos-studio", "azure-cloud-shell", "azure-communication-services", "azure-communications-gateway", "azure-compute-galleries", "azure-consumption-commitment", "azure-cosmos-db", "azure-data-catalog", "azure-data-explorer-clusters", "azure-database-maria-db-server", "azure-database-migration-services", "azure-database-my-sql-server", "azure-database-postgre-sql-server", "azure-database-postgre-sql-server-group", "azure-databox-gateway", "azure-databricks", "azure-deployment-environments", "azure-dev-ops", "azure-dev-tunnels", "azure-edge-hardware-center", "azure-experimentation-studio", "azure-fileshares", "azure-firewall-manager", "azure-firewall-policy", "azure-hcp-cache", "azure-hpc-workbenches", "azure-hybrid-center", "azure-information-protection", "azure-io-t-operations", "azure-lighthouse", "azure-load-testing", "azure-managed-grafana", "azure-managed-redis", "azure-maps-accounts", "azure-media-service", "azure-migrate", "azure-monitor-dashboard", "azure-monitor-pipeline", "azure-monitors-for-sap-solutions", "azure-net-app-files", "azure-network-function-manager", "azure-network-function-manager-functions", "azure-object-understanding", "azure-open-ai", "azure-operator-5g-core", "azure-operator-insights", "azure-operator-nexus", "azure-operator-service-manager", "azure-orbital", "azure-programmable-connectivity", "azure-purview-accounts", "azure-quotas", "azure-red-hat-open-shift", "azure-sentinel", "azure-service-bus", "azure-sphere", "azure-spring-apps", "azure-sql", "azure-sql-edge", "azure-sql-server-stretch-databases", "azure-sql-vm", "azure-stack", "azure-stack-edge", "azure-stack-hci-sizer", "azure-storage-mover", "azure-support-center-blue", "azure-sustainability", "azure-synapse-analytics", "azure-token-service", "azure-video-indexer", "azure-virtual-desktop", "azure-vmware-solution", "azure-workbooks", "azurite", "backlog", "backup-vault", "bare-metal-infrastructure", "bastions", "batch-accounts", "batch-ai", "biz-talk", "blob-block", "blob-page", "blockchain-applications", "blueprints", "bonsai", "bot-services", "branch", "breeze", "browser", "bug", "builds", "business-process-tracking", "cache", "cache-redis", "capacity", "capacity-reservation-groups", "cdn-profiles", "central-service-instance-for-sap", "ceres", "change-analysis", "client-apps", "cloud-services-classic", "cloud-services-extended-support", "cloud-test", "code", "code-optimization", "cognitive-search", "cognitive-services", "cognitive-services-decisions", "collaborative-service", "commit", "community-images", "compliance", "compliance-center", "compute-fleet", "computer-vision", "conditional-access", "confidential-ledgers", "connected-cache", "connected-vehicle-platform", "connections", "consortium", "container-apps-environments", "container-instances", "container-registries", "container-services-deprecated", "content-moderators", "content-safety", "controls", "controls-horizontal", "cost-alerts", "cost-analysis", "cost-budgets", "cost-export", "cost-management", "cost-management-and-billing", "counter", "cubes", "custom-ip-prefix", "custom-vision", "customer-lockbox-for-microsoft-azure", "dashboard", "dashboard-hub", "data-box", "data-collection-rules", "data-factories", "data-lake-analytics", "data-lake-storage-gen1", "data-lake-store-gen1", "data-share-invitations", "data-shares", "data-virtualization", "database-instance-for-sap", "ddo-s-protection-plans", "dedicated-hsm", "defender-cm-local-manager", "defender-dcs-controller", "defender-distributer-control-system", "defender-engineering-station", "defender-external-management", "defender-freezer-monitor", "defender-historian", "defender-hmi", "defender-industrial-packaging-system", "defender-industrial-printer", "defender-industrial-robot", "defender-industrial-scale-system", "defender-marquee", "defender-meter", "defender-plc", "defender-pneumatic-device", "defender-programable-board", "defender-relay", "defender-robot-controller", "defender-rtu", "defender-sensor", "defender-slot", "defender-web-guiding-system", "detonation", "dev-console", "dev-ops-starter", "dev-test-labs", "device-compliance", "device-configuration", "device-enrollment", "device-provisioning-services", "device-security-apple", "device-security-google", "device-security-windows", "device-update-io-t-hub", "devices", "diagnostics-settings", "digital-twins", "disk-encryption-sets", "disk-pool", "disks", "disks-classic", "disks-snapshots", "dns-multistack", "dns-private-resolver", "dns-security-policy", "dns-zones", "download", "e-books", "edge-actions", "edge-management", "edge-storage-accelerator", "education", "elastic-job-agents", "elastic-san", "endpoint-analytics", "engage-center-connect", "enterprise-applications", "entra-connect", "entra-connect-health", "entra-connect-sync", "entra-domain-services", "entra-global-secure-access", "entra-id-protection", "entra-identity-custom-roles", "entra-identity-licenses", "entra-identity-risky-signins", "entra-identity-risky-users", "entra-identity-roles-and-administrators", "entra-internet-access", "entra-managed-identities", "entra-private-access", "entra-privleged-identity-management", "entra-verified-id", "error", "event-grid-domains", "event-grid-subscriptions", "event-grid-topics", "event-hub-clusters", "event-hubs", "exchange-access", "exchange-on-premises-access", "express-route-circuits", "express-route-direct", "express-route-traffic-collector", "extended-security-updates", "extensions", "external-id", "external-id-modified", "external-identities", "face-apis", "feature-previews", "fhir-service", "fiji", "file", "files", "firewalls", "folder-blank", "folder-website", "form-recognizers", "frd-qa", "free-services", "front-door-and-cdn-profiles", "ftp", "function-apps", "gear", "genomics", "genomics-accounts", "globe-error", "globe-success", "globe-warning", "groups", "guide", "hd-insight-clusters", "hdi-aks-cluster", "heart", "help-and-support", "host-groups", "host-pools", "hosts", "hybrid-connectivity-hub", "ic-m-troubleshooting", "identity-governance", "identity-multi-factor-authentication", "identity-secure-score", "image", "image-definitions", "image-templates", "image-versions", "images", "immersive-readers", "import-export-jobs", "industrial-io-t", "information", "infrastructure-backup", "input-output", "instance-pools", "integration-accounts", "integration-environments", "integration-service-environments", "internet-analyzer-profiles", "intune", "intune-app-protection", "intune-for-education", "intune-trends", "io-t-central-applications", "io-t-edge", "io-t-hub", "ip-address-manager", "ip-groups", "journey-hub", "key-vaults", "keys", "kubernetes-fleet-manager", "kubernetes-services", "lab-accounts", "lab-services", "landing-zone", "language", "language-understanding", "launch-portal", "learn", "load-balancer-hub", "load-balancers", "load-test", "load-testing", "local-network-gateways", "location", "log-analytics-query-pack", "log-analytics-workspaces", "log-streaming", "logic-apps", "logic-apps-custom-connector", "logic-apps-template", "machine-learning", "machine-learning-studio-classic-web-services", "machine-learning-studio-web-service-plans", "machine-learning-studio-workspaces", "machines-azure-arc", "maintenance-configuration", "managed-applications-center", "managed-database", "managed-desktop", "managed-dev-ops-pools", "managed-file-shares", "managed-identities", "managed-instance-apache-cassandra", "managed-service-fabric", "management-groups", "management-portal", "marketplace", "marketplace-management", "med-tech-service", "media", "media-file", "mesh-applications", "metrics", "metrics-advisor", "microsoft-defender-easm", "microsoft-defender-for-cloud", "microsoft-defender-for-io-t", "microsoft-dev-box", "mindaro", "mission-landing-zone", "mobile", "mobile-engagement", "mobile-networks", "modular-data-center", "module", "monitor", "monitor-health-models", "multi-tenancy", "multifactor-authentication", "my-customers", "nat", "network-foundation-hub", "network-interfaces", "network-managers", "network-security-groups", "network-security-hub", "network-security-perimeters", "network-watcher", "notification-hub-namespaces", "notification-hubs", "offers", "on-premises-data-gateways", "open-supply-chain-platform", "operation-log-classic", "oracle-database", "os-images-classic", "osconfig", "outbound-connection", "partner-namespace", "partner-registration", "partner-topic", "peering-service", "peerings", "personalizers", "planetary-computer-pro", "plans", "policy", "power", "power-bi-embedded", "power-platform", "power-up", "powershell", "preview-features", "private-endpoints", "private-link", "private-link-service", "private-link-services", "process-explorer", "production-ready-database", "promethus", "proximity-placement-groups", "public-ip-addresses", "public-ip-addresses-classic", "public-ip-prefixes", "qn-a-makers", "quickstart-center", "recent", "recovery-services-vaults", "region-management", "relays", "remote-rendering", "reservations", "reserved-capacity", "reserved-ip-addresses-classic", "resource-explorer", "resource-graph-explorer", "resource-group-list", "resource-groups", "resource-guard", "resource-linked", "resource-management-private-link", "resource-mover", "resources-provider", "restore-points", "restore-points-collections", "route-filters", "route-tables", "rtos", "savings-plans", "scheduler", "scheduler-job-collections", "scvmm-management-servers", "search", "search-grid", "security", "security-baselines", "send-grid-accounts", "server-farm", "serverless-search", "service-catalog-mad", "service-endpoint-policies", "service-fabric-clusters", "service-group-relationships", "service-groups", "service-health", "service-providers", "shared-image-galleries", "signal-r", "software-as-a-service", "software-updates", "solutions", "sonic-dash", "spatial-anchor-accounts", "speech-services", "spot-vm", "spot-vmss", "sql-data-warehouses", "sql-database", "sql-database-fleet-manager", "sql-elastic-pools", "sql-managed-instance", "sql-server", "sql-server-registries", "ssd", "ssh-keys", "ssis-lift-and-shift-ir", "stack-hci-premium", "static-apps", "stor-simple-data-managers", "stor-simple-device-managers", "storage-accounts", "storage-accounts-classic", "storage-actions", "storage-azure-files", "storage-container", "storage-explorer", "storage-functions", "storage-hubs", "storage-queue", "storage-sync-services", "stream-analytics-jobs", "subnet", "subscriptions", "system-topic", "table", "tag", "tags", "targets-management", "template-specs", "templates", "tenant-properties", "tenant-status", "test-base", "tfs-vc-repository", "time-series-data-sets", "time-series-insights-access-policies", "time-series-insights-environments", "time-series-insights-event-sources", "toolbox", "toolchain-orchestrator", "traffic-manager-profiles", "translator-text", "troubleshoot", "universal-print", "update-management-center", "updates", "user-privacy", "user-settings", "user-subscriptions", "users", "verifiable-credentials", "verification-as-a-service", "versions", "video-analyzers", "virtual-clusters", "virtual-enclaves", "virtual-instance-for-sap", "virtual-machine", "virtual-machines-classic", "virtual-network-gateways", "virtual-networks", "virtual-networks-classic", "virtual-router", "virtual-visits-builder", "virtual-wan-hub", "virtual-wans", "vm-app-definitions", "vm-app-versions", "vm-image-version", "vm-images-classic", "vm-scale-sets", "vpnclient-windows", "wac", "wac-installer", "web-app-database", "web-application-firewall-policies-waf", "web-jobs", "web-slots", "web-test", "website-power", "website-staging", "windows-notification-services", "windows10-core-services", "workbooks", "worker-container-app", "workflow", "workload-orchestration", "workspace-gateway", "workspaces"], "gcp": ["access-context-manager", "administration", "advanced-agent-modeling", "advanced-solutions-lab", "agent-assist", "ai-hub", "ai-platform", "ai-platform-unified", "analytics-hub", "anthos", "anthos-config-management", "anthos-service-mesh", "api", "api-analytics", "api-monetization", "apigee-api-platform", "apigee-sense", "app-engine", "artifact-registry", "asset-inventory", "assured-workloads", "auto-ml", "auto-ml-natural-language", "auto-ml-tables", "auto-ml-translation", "auto-ml-video-intelligence", "auto-ml-vision", "bare-metal-solutions", "batch", "beyondcorp", "big-query", "bigtable", "billing", "binary-authorization", "catalog", "certificate-authority-service", "certificate-manager", "cloud-api-gateway", "cloud-apis", "cloud-armor", "cloud-asset-inventory", "cloud-audit-logs", "cloud-build", "cloud-cdn", "cloud-code", "cloud-composer", "cloud-data-fusion", "cloud-deploy", "cloud-deployment-manager", "cloud-dns", "cloud-domains", "cloud-ekm", "cloud-endpoints", "cloud-external-ip-addresses", "cloud-firewall-rules", "cloud-for-marketing", "cloud-functions", "cloud-generic", "cloud-gpu", "cloud-healthcare-api", "cloud-healthcare-marketplace", "cloud-hsm", "cloud-ids", "cloud-inference-api", "cloud-interconnect", "cloud-jobs-api", "cloud-load-balancing", "cloud-logging", "cloud-media-edge", "cloud-monitoring", "cloud-nat", "cloud-natural-language-api", "cloud-network", "cloud-ops", "cloud-optimization-ai", "cloud-optimization-ai-fleet-routing-api", "cloud-router", "cloud-routes", "cloud-run", "cloud-run-for-anthos", "cloud-scheduler", "cloud-security-scanner", "cloud-shell", "cloud-spanner", "cloud-sql", "cloud-storage", "cloud-tasks", "cloud-test-lab", "cloud-tpu", "cloud-translation-api", "cloud-vision-api", "cloud-vpn", "compute-engine", "configuration-management", "connectivity-test", "connectors", "contact-center-ai", "container-optimized-os", "container-registry", "data-catalog", "data-labeling", "data-layers", "data-loss-prevention-api", "data-qn-a", "data-studio", "data-transfer", "database-migration-service", "dataflow", "datalab", "dataplex", "datapol", "dataprep", "dataproc", "dataproc-metastore", "datashare", "datastore", "datastream", "debugger", "developer-portal", "dialogflow", "dialogflow-cx", "dialogflow-insights", "document-ai", "early-access-center", "error-reporting", "eventarc", "filestore", "financial-services-marketplace", "firestore", "fleet-engine", "free-trial", "game-servers", "gce-systems-management", "genomics", "gke-on-prem", "google-cloud-marketplace", "google-kubernetes-engine", "google-maps-platform", "healthcare-nlp-api", "home", "identity-and-access-management", "identity-aware-proxy", "identity-platform", "iot-core", "iot-edge", "key-access-justifications", "key-management-service", "kuberun", "launcher", "local-ssd", "looker", "managed-service-for-microsoft-active-directory", "media-translation-api", "memorystore", "migrate-for-anthos", "migrate-for-compute-engine", "my-cloud", "network-connectivity-center", "network-intelligence-center", "network-security", "network-tiers", "network-topology", "onboarding", "os-configuration-management", "os-inventory-management", "os-patch-management", "partner-interconnect", "partner-portal", "performance-dashboard", "permissions", "persistent-disk", "phishing-protection", "policy-analyzer", "premium-network-tier", "private-connectivity", "private-service-connect", "producer-portal", "profiler", "project", "pub-sub", "quantum-engine", "quotas", "real-world-insights", "recommendations-ai", "release-notes", "retail-api", "risk-manager", "runtime-config", "secret-manager", "security", "security-command-center", "security-health-advisor", "security-key-enforcement", "service-discovery", "speech-to-text", "stackdriver", "standard-network-tier", "stream-suite", "support", "tensorflow-enterprise", "text-to-speech", "tools-for-powershell", "trace", "traffic-director", "transfer", "transfer-appliance", "user-preferences", "vertex-ai", "video-intelligence-api", "virtual-private-cloud", "visual-inspection", "vmware-engine", "web-risk", "web-security-scanner", "workflows", "workload-identity-pool"], "tech": ["aarch64", "adobe-illustrator", "adobe-photoshop", "adobe-premiere-pro", "adobe-xd", "adonis-js", "after-effects", "airflow", "akka", "algolia", "alpine-js", "amazon-web-services", "anaconda", "android", "android-studio", "angular", "angular-js", "ansible", "ant-design", "apache", "apl", "appcelerator", "apple", "apple-safari", "appwrite", "arch-linux", "arduino", "argo-cd", "astro", "atom", "autodesk-maya", "autodesk-shot-grid", "awk", "azios", "azure", "azure-devops", "azure-sql-database", "babel", "backbone-js", "ballerina", "bamboo", "bash", "behance", "bitbucket", "blender", "bootstrap", "bower", "browserstack", "bulma", "bun", "c", "cairo-graphics", "cake-php", "canva", "capacitor", "cassandra", "cent-os", "chrome", "circle-ci", "clarity", "clion", "clojure", "clojure-script", "cloudflare", "cloudflare-workers", "cmake", "code-igniter", "code-pen", "codeac", "codecov", "coffee-script", "composer", "confluence", "consul", "contao", "corejs", "cosmosdb", "couchdb", "cplusplus", "crystal", "csharp", "css3", "cucumber", "cypress", "d3js", "dart", "data-grip", "data-spell", "dbeaver", "debian", "deno", "devicon", "digital-ocean", "discord-js", "django", "django-rest", "docker", "doctrine", "dropwizard", "drupal", "eclipse-ceylon", "eclipse-ide", "eclipse-vert-x", "elasticbeats", "elasticsearch", "electron", "eleventy-11ty", "elixir", "elm", "embedded-c", "ember-js", "envoy", "erlang", "eslint", "express", "facebook", "fast-api", "fastify", "fauna", "feathers", "fedora", "figma", "file-zilla", "firebase", "firefox", "flask", "flutter", "fortran", "foundation", "fsharp", "gatling", "gatsby", "gazebo", "gcc", "gentoo", "ghost", "gimp", "git", "gitbook", "github", "github-actions", "github-codespaces", "gitlab", "gitpod", "gitter", "gnu-emacs", "go", "go-land", "godot-engine", "google", "google-cloud", "gradle", "grafana", "grails", "graphql", "groovy", "grunt-js", "gulp-js", "hadoop", "handlebars", "hardhat", "harvester", "hashicorp-vault", "haskell", "haxe", "helm", "heroku", "hibernate", "homebrew", "html5", "hugo", "ibm-spss-statistics", "ie10", "ifttt", "influxdb", "inkscape", "insomnia", "intellij-idea", "ionic", "jaeger", "jamstack", "jasmine", "java", "javascript", "jeet", "jekyll", "jenkins", "jest", "jetbrains", "jira", "jira-align", "jquery", "json", "jule", "julia", "junit", "jupyter", "k3os", "k3s", "kafka", "kaggle", "karate", "karma", "keras", "kibana", "knex-js", "knockout", "kotlin", "krakenjs", "ktor", "kubernetes", "labview", "laravel", "latex", "less-js", "linkedin", "linux", "liquibase", "livewire", "llvm", "logstash", "lua", "lumen", "magento", "markdown", "material-ui", "materialize", "matlab", "matplotlib", "maven", "meteor-js", "microsoft-sql-server", "minitab", "mob-x", "mocha", "modx", "moleculer", "mongodb", "mongoose-js", "moodle", "ms-dos", "mysql", "nano", "nerog", "nestjs", "net", "net-core", "network-x", "new4j", "nextjs", "nginx", "nhibernate", "nim", "nimble", "nix", "nodejs", "nodemon", "nodewebkit", "npm", "nuget", "num-py", "nuxt-js", "objective-c", "ocaml", "oh-my-zsh", "okta", "open-al", "open-api", "open-cl", "open-cv", "open-gl", "open-stack", "open-suse", "open-telemetry", "opera", "oracle", "p5js", "packer", "pandas", "perl", "pf-sense", "phalcon", "phoenix-framework", "photon-engine", "php", "php-storm", "playwrite", "ploty", "podman", "polygon", "portainer", "postcss", "postgresql", "postman", "powershell", "processing", "prometheus", "protractor", "purescript", "putty", "pycharm", "pyscript", "pytest", "python", "python-poetry", "pytorch", "qodana", "qt", "quarkus", "quasar", "qwik", "r", "rabbitmq", "rancher", "raspberrypi", "reach", "react", "react-bootstrap", "realm", "red-cube-s-epic-compiler-thingy-programming-re-ct", "redhat", "redis", "redux", "ren-py", "rider", "robot-operating-system-ros", "rocksdb", "rollup-js", "rspec", "rstudio", "ruby", "ruby-mine", "ruby-on-rails", "rust", "salesforce", "sanity", "sass", "scala", "scalingo", "sdl", "selenium", "sema-software", "sequelize", "shopware", "sketch", "slack", "socket-io", "solid-js", "solidity", "sonarqube", "sourcetree", "spark", "splunk", "spring", "sql-developer", "sqlalchemy", "sqlite", "ssh", "stackoverflow", "stata", "storybook", "streamlit", "stylus", "subversion", "svelte", "swagger", "swift", "symfony", "tailwind-css", "tauri", "tensorflow", "terraform", "tex", "the-algorithms", "three-js", "titanium-sdk", "tomcat", "tortoise-git", "tower", "traefik-mesh", "traefik-proxy", "travis-ci", "trello", "twitter", "typescript", "typo3", "ubuntu", "uml", "unity", "unix", "unreal-engine", "uwsgi", "v8", "vagrant", "vala", "vercel", "veutify", "vim", "visualstudio", "vite", "vitejs", "vscode", "vsphere", "vue", "vue-storefront", "vyper", "webassembly", "webflow", "weblate", "webpack", "webstorm", "windows8", "windows11", "woo-commerce", "wordpress", "xamarin", "xcode", "xml", "yaml", "yarn", "yii-framework", "yuno-host", "zend-framework", "zig"] })].flatMap(([group, names]) => names.map((name) => group + ":" + name));
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
// THIS FILE IS AUTO-GENERATED. DO NOT EDIT THIS FILE DIRECTLY.
|
|
3
|
+
// Generated from @likec4/icons
|
|
4
|
+
const icons = [...Object.entries({ "aws": ["activate", "alexa-for-business", "amplify", "apache-mxnet-on-aws", "api-gateway", "app-config", "app-flow", "app-mesh", "app-runner", "app-stream", "app-sync", "application-auto-scaling", "application-composer", "application-cost-profiler", "application-discovery-service", "application-migration-service", "artifact", "athena", "audit-manager", "augmented-ai-a2i", "aurora", "auto-scaling", "backint-agent", "backup", "batch", "billing-conductor", "bottlerocket", "braket", "budgets", "certificate-manager", "chatbot", "chime", "chime-sdk", "chime-voice-connector", "clean-rooms", "client-vpn", "cloud-control-api", "cloud-development-kit", "cloud-directory", "cloud-formation", "cloud-front", "cloud-hsm", "cloud-map", "cloud-search", "cloud-shell", "cloud-trail", "cloud-wan", "cloud-watch", "cloud9", "code-artifact", "code-build", "code-catalyst", "code-commit", "code-deploy", "code-guru", "code-pipeline", "code-star", "code-whisperer", "cognito", "command-line-interface", "comprehend", "comprehend-medical", "compute-optimizer", "config", "connect", "console-mobile-application", "control-tower", "corretto", "cost-and-usage-report", "cost-explorer", "data-exchange", "data-pipeline", "data-sync", "data-zone", "database-migration-service", "deep-composer", "deep-learning-amis", "deep-learning-containers", "deep-lens", "deep-racer", "detective", "dev-ops-guru", "device-farm", "direct-connect", "directory-service", "distro-for-open-telemetry", "document-db", "dynamo-db", "ec2", "ec2-auto-scaling", "ec2-image-builder", "ecs-anywhere", "efs", "eks-anywhere", "eks-cloud", "eks-distro", "elasti-cache", "elastic-beanstalk", "elastic-block-store", "elastic-container-registry", "elastic-container-service", "elastic-disaster-recovery", "elastic-fabric-adapter", "elastic-inference", "elastic-kubernetes-service", "elastic-load-balancing", "elastic-transcoder", "elemental-appliances-software", "elemental-conductor", "elemental-delta", "elemental-link", "elemental-live", "elemental-media-connect", "elemental-media-convert", "elemental-media-live", "elemental-media-package", "elemental-media-store", "elemental-media-tailor", "elemental-server", "emr", "event-bridge", "express-workflows", "fargate", "fault-injection-simulator", "file-cache", "fin-space", "firewall-manager", "forecast", "fraud-detector", "free-rtos", "fsx", "fsx-for-lustre", "fsx-for-net-app-ontap", "fsx-for-open-zfs", "fsx-for-wfs", "game-kit", "game-lift", "game-sparks", "genomics-cli", "global-accelerator", "glue", "glue-data-brew", "glue-elastic-views", "ground-station", "guard-duty", "health-lake", "honeycode", "iam-identity-center", "identity-and-access-management", "inspector", "interactive-video-service", "io-t-1-click", "io-t-analytics", "io-t-button", "io-t-core", "io-t-device-defender", "io-t-device-management", "io-t-edu-kit", "io-t-events", "io-t-express-link", "io-t-fleet-wise", "io-t-greengrass", "io-t-robo-runner", "io-t-site-wise", "io-t-things-graph", "io-t-twin-maker", "iq", "kendra", "key-management-service", "keyspaces", "kinesis", "kinesis-data-analytics", "kinesis-data-streams", "kinesis-firehose", "kinesis-video-streams", "lake-formation", "lambda", "launch-wizard", "lex", "license-manager", "lightsail", "local-zones", "location-service", "lookout-for-equipment", "lookout-for-metrics", "lookout-for-vision", "lumberyard", "macie", "mainframe-modernization", "managed-blockchain", "managed-grafana", "managed-service-for-prometheus", "managed-services", "managed-streaming-for-apache-kafka", "managed-workflows-for-apache-airflow", "management-console", "marketplace-dark", "marketplace-light", "memory-db-for-redis", "migration-evaluator", "migration-hub", "monitron", "mq", "neptune", "network-firewall", "neuron", "nice-dcv", "nice-engin-frame", "nimble-studio", "nitro-enclaves", "omics", "open-3d-engine", "open-search-service", "ops-works", "organizations", "outposts-family", "outposts-rack", "outposts-servers", "panorama", "parallel-cluster", "personal-health-dashboard", "personalize", "pinpoint", "pinpoint-apis", "polly", "private-5g", "private-certificate-authority", "private-link", "professional-services", "proton", "quantum-ledger-database", "quick-sight", "rds", "rds-on-vmware", "re-post", "red-hat-open-shift-service-on-aws", "redshift", "rekognition", "reserved-instance-reporting", "resilience-hub", "resource-access-manager", "resource-explorer", "robo-maker", "route-53", "s3-on-outposts", "sage-maker", "sage-maker-ground-truth", "sage-maker-studio-lab", "savings-plans", "secrets-manager", "security-hub", "security-lake", "server-migration-service", "serverless-application-repository", "service-catalog", "service-management-connector", "shield", "signer", "sim-space-weaver", "simple-email-service", "simple-notification-service", "simple-queue-service", "simple-storage-service", "simple-storage-service-glacier", "site-to-site-vpn", "snowball", "snowball-edge", "snowcone", "snowmobile", "step-functions", "storage-gateway", "sumerian", "supply-chain", "support", "systems-manager", "tensor-flow-on-aws", "textract", "thinkbox-deadline", "thinkbox-frost", "thinkbox-krakatoa", "thinkbox-sequoia", "thinkbox-stoke", "thinkbox-xmesh", "timestream", "tools-and-sdks", "torch-serve", "training-certification", "transcribe", "transfer-family", "transit-gateway", "translate", "trusted-advisor", "verified-access", "verified-permissions", "virtual-private-cloud", "vmware-cloud-on-aws", "vpc-lattice", "waf", "wavelength", "well-architected-tool", "wickr", "work-docs", "work-docs-sdk", "work-link", "work-mail", "work-spaces-family", "x-ray"], "azure": ["abs-member", "active-directory-connect-health", "activity-log", "administrative-units", "advisor", "ai-at-edge", "ai-studio", "aks-automatic", "aks-istio", "alerts", "all-resources", "analysis-services", "anomaly-detector", "api-center", "api-connections", "api-management-services", "api-proxy", "app-compliance-automation", "app-configuration", "app-registrations", "app-service-certificates", "app-service-domains", "app-service-environments", "app-service-plans", "app-services", "app-space", "app-space-component", "applens", "application-gateway-containers", "application-gateways", "application-group", "application-insights", "application-security-groups", "aquila", "arc-data-services", "arc-kubernetes", "arc-machines", "arc-postgre-sql", "arc-sql-managed-instance", "arc-sql-server", "atm-multistack", "auto-scale", "automanaged-vm", "automation-accounts", "availability-sets", "avs-vm", "azure-a", "azure-ad-b2c", "azure-api-for-fhir", "azure-applied-ai-services", "azure-arc", "azure-attestation", "azure-backup-center", "azure-blockchain-service", "azure-center-for-sap", "azure-chaos-studio", "azure-cloud-shell", "azure-communication-services", "azure-communications-gateway", "azure-compute-galleries", "azure-consumption-commitment", "azure-cosmos-db", "azure-data-catalog", "azure-data-explorer-clusters", "azure-database-maria-db-server", "azure-database-migration-services", "azure-database-my-sql-server", "azure-database-postgre-sql-server", "azure-database-postgre-sql-server-group", "azure-databox-gateway", "azure-databricks", "azure-deployment-environments", "azure-dev-ops", "azure-dev-tunnels", "azure-edge-hardware-center", "azure-experimentation-studio", "azure-fileshares", "azure-firewall-manager", "azure-firewall-policy", "azure-hcp-cache", "azure-hpc-workbenches", "azure-hybrid-center", "azure-information-protection", "azure-io-t-operations", "azure-lighthouse", "azure-load-testing", "azure-managed-grafana", "azure-managed-redis", "azure-maps-accounts", "azure-media-service", "azure-migrate", "azure-monitor-dashboard", "azure-monitor-pipeline", "azure-monitors-for-sap-solutions", "azure-net-app-files", "azure-network-function-manager", "azure-network-function-manager-functions", "azure-object-understanding", "azure-open-ai", "azure-operator-5g-core", "azure-operator-insights", "azure-operator-nexus", "azure-operator-service-manager", "azure-orbital", "azure-programmable-connectivity", "azure-purview-accounts", "azure-quotas", "azure-red-hat-open-shift", "azure-sentinel", "azure-service-bus", "azure-sphere", "azure-spring-apps", "azure-sql", "azure-sql-edge", "azure-sql-server-stretch-databases", "azure-sql-vm", "azure-stack", "azure-stack-edge", "azure-stack-hci-sizer", "azure-storage-mover", "azure-support-center-blue", "azure-sustainability", "azure-synapse-analytics", "azure-token-service", "azure-video-indexer", "azure-virtual-desktop", "azure-vmware-solution", "azure-workbooks", "azurite", "backlog", "backup-vault", "bare-metal-infrastructure", "bastions", "batch-accounts", "batch-ai", "biz-talk", "blob-block", "blob-page", "blockchain-applications", "blueprints", "bonsai", "bot-services", "branch", "breeze", "browser", "bug", "builds", "business-process-tracking", "cache", "cache-redis", "capacity", "capacity-reservation-groups", "cdn-profiles", "central-service-instance-for-sap", "ceres", "change-analysis", "client-apps", "cloud-services-classic", "cloud-services-extended-support", "cloud-test", "code", "code-optimization", "cognitive-search", "cognitive-services", "cognitive-services-decisions", "collaborative-service", "commit", "community-images", "compliance", "compliance-center", "compute-fleet", "computer-vision", "conditional-access", "confidential-ledgers", "connected-cache", "connected-vehicle-platform", "connections", "consortium", "container-apps-environments", "container-instances", "container-registries", "container-services-deprecated", "content-moderators", "content-safety", "controls", "controls-horizontal", "cost-alerts", "cost-analysis", "cost-budgets", "cost-export", "cost-management", "cost-management-and-billing", "counter", "cubes", "custom-ip-prefix", "custom-vision", "customer-lockbox-for-microsoft-azure", "dashboard", "dashboard-hub", "data-box", "data-collection-rules", "data-factories", "data-lake-analytics", "data-lake-storage-gen1", "data-lake-store-gen1", "data-share-invitations", "data-shares", "data-virtualization", "database-instance-for-sap", "ddo-s-protection-plans", "dedicated-hsm", "defender-cm-local-manager", "defender-dcs-controller", "defender-distributer-control-system", "defender-engineering-station", "defender-external-management", "defender-freezer-monitor", "defender-historian", "defender-hmi", "defender-industrial-packaging-system", "defender-industrial-printer", "defender-industrial-robot", "defender-industrial-scale-system", "defender-marquee", "defender-meter", "defender-plc", "defender-pneumatic-device", "defender-programable-board", "defender-relay", "defender-robot-controller", "defender-rtu", "defender-sensor", "defender-slot", "defender-web-guiding-system", "detonation", "dev-console", "dev-ops-starter", "dev-test-labs", "device-compliance", "device-configuration", "device-enrollment", "device-provisioning-services", "device-security-apple", "device-security-google", "device-security-windows", "device-update-io-t-hub", "devices", "diagnostics-settings", "digital-twins", "disk-encryption-sets", "disk-pool", "disks", "disks-classic", "disks-snapshots", "dns-multistack", "dns-private-resolver", "dns-security-policy", "dns-zones", "download", "e-books", "edge-actions", "edge-management", "edge-storage-accelerator", "education", "elastic-job-agents", "elastic-san", "endpoint-analytics", "engage-center-connect", "enterprise-applications", "entra-connect", "entra-connect-health", "entra-connect-sync", "entra-domain-services", "entra-global-secure-access", "entra-id-protection", "entra-identity-custom-roles", "entra-identity-licenses", "entra-identity-risky-signins", "entra-identity-risky-users", "entra-identity-roles-and-administrators", "entra-internet-access", "entra-managed-identities", "entra-private-access", "entra-privleged-identity-management", "entra-verified-id", "error", "event-grid-domains", "event-grid-subscriptions", "event-grid-topics", "event-hub-clusters", "event-hubs", "exchange-access", "exchange-on-premises-access", "express-route-circuits", "express-route-direct", "express-route-traffic-collector", "extended-security-updates", "extensions", "external-id", "external-id-modified", "external-identities", "face-apis", "feature-previews", "fhir-service", "fiji", "file", "files", "firewalls", "folder-blank", "folder-website", "form-recognizers", "frd-qa", "free-services", "front-door-and-cdn-profiles", "ftp", "function-apps", "gear", "genomics", "genomics-accounts", "globe-error", "globe-success", "globe-warning", "groups", "guide", "hd-insight-clusters", "hdi-aks-cluster", "heart", "help-and-support", "host-groups", "host-pools", "hosts", "hybrid-connectivity-hub", "ic-m-troubleshooting", "identity-governance", "identity-multi-factor-authentication", "identity-secure-score", "image", "image-definitions", "image-templates", "image-versions", "images", "immersive-readers", "import-export-jobs", "industrial-io-t", "information", "infrastructure-backup", "input-output", "instance-pools", "integration-accounts", "integration-environments", "integration-service-environments", "internet-analyzer-profiles", "intune", "intune-app-protection", "intune-for-education", "intune-trends", "io-t-central-applications", "io-t-edge", "io-t-hub", "ip-address-manager", "ip-groups", "journey-hub", "key-vaults", "keys", "kubernetes-fleet-manager", "kubernetes-services", "lab-accounts", "lab-services", "landing-zone", "language", "language-understanding", "launch-portal", "learn", "load-balancer-hub", "load-balancers", "load-test", "load-testing", "local-network-gateways", "location", "log-analytics-query-pack", "log-analytics-workspaces", "log-streaming", "logic-apps", "logic-apps-custom-connector", "logic-apps-template", "machine-learning", "machine-learning-studio-classic-web-services", "machine-learning-studio-web-service-plans", "machine-learning-studio-workspaces", "machines-azure-arc", "maintenance-configuration", "managed-applications-center", "managed-database", "managed-desktop", "managed-dev-ops-pools", "managed-file-shares", "managed-identities", "managed-instance-apache-cassandra", "managed-service-fabric", "management-groups", "management-portal", "marketplace", "marketplace-management", "med-tech-service", "media", "media-file", "mesh-applications", "metrics", "metrics-advisor", "microsoft-defender-easm", "microsoft-defender-for-cloud", "microsoft-defender-for-io-t", "microsoft-dev-box", "mindaro", "mission-landing-zone", "mobile", "mobile-engagement", "mobile-networks", "modular-data-center", "module", "monitor", "monitor-health-models", "multi-tenancy", "multifactor-authentication", "my-customers", "nat", "network-foundation-hub", "network-interfaces", "network-managers", "network-security-groups", "network-security-hub", "network-security-perimeters", "network-watcher", "notification-hub-namespaces", "notification-hubs", "offers", "on-premises-data-gateways", "open-supply-chain-platform", "operation-log-classic", "oracle-database", "os-images-classic", "osconfig", "outbound-connection", "partner-namespace", "partner-registration", "partner-topic", "peering-service", "peerings", "personalizers", "planetary-computer-pro", "plans", "policy", "power", "power-bi-embedded", "power-platform", "power-up", "powershell", "preview-features", "private-endpoints", "private-link", "private-link-service", "private-link-services", "process-explorer", "production-ready-database", "promethus", "proximity-placement-groups", "public-ip-addresses", "public-ip-addresses-classic", "public-ip-prefixes", "qn-a-makers", "quickstart-center", "recent", "recovery-services-vaults", "region-management", "relays", "remote-rendering", "reservations", "reserved-capacity", "reserved-ip-addresses-classic", "resource-explorer", "resource-graph-explorer", "resource-group-list", "resource-groups", "resource-guard", "resource-linked", "resource-management-private-link", "resource-mover", "resources-provider", "restore-points", "restore-points-collections", "route-filters", "route-tables", "rtos", "savings-plans", "scheduler", "scheduler-job-collections", "scvmm-management-servers", "search", "search-grid", "security", "security-baselines", "send-grid-accounts", "server-farm", "serverless-search", "service-catalog-mad", "service-endpoint-policies", "service-fabric-clusters", "service-group-relationships", "service-groups", "service-health", "service-providers", "shared-image-galleries", "signal-r", "software-as-a-service", "software-updates", "solutions", "sonic-dash", "spatial-anchor-accounts", "speech-services", "spot-vm", "spot-vmss", "sql-data-warehouses", "sql-database", "sql-database-fleet-manager", "sql-elastic-pools", "sql-managed-instance", "sql-server", "sql-server-registries", "ssd", "ssh-keys", "ssis-lift-and-shift-ir", "stack-hci-premium", "static-apps", "stor-simple-data-managers", "stor-simple-device-managers", "storage-accounts", "storage-accounts-classic", "storage-actions", "storage-azure-files", "storage-container", "storage-explorer", "storage-functions", "storage-hubs", "storage-queue", "storage-sync-services", "stream-analytics-jobs", "subnet", "subscriptions", "system-topic", "table", "tag", "tags", "targets-management", "template-specs", "templates", "tenant-properties", "tenant-status", "test-base", "tfs-vc-repository", "time-series-data-sets", "time-series-insights-access-policies", "time-series-insights-environments", "time-series-insights-event-sources", "toolbox", "toolchain-orchestrator", "traffic-manager-profiles", "translator-text", "troubleshoot", "universal-print", "update-management-center", "updates", "user-privacy", "user-settings", "user-subscriptions", "users", "verifiable-credentials", "verification-as-a-service", "versions", "video-analyzers", "virtual-clusters", "virtual-enclaves", "virtual-instance-for-sap", "virtual-machine", "virtual-machines-classic", "virtual-network-gateways", "virtual-networks", "virtual-networks-classic", "virtual-router", "virtual-visits-builder", "virtual-wan-hub", "virtual-wans", "vm-app-definitions", "vm-app-versions", "vm-image-version", "vm-images-classic", "vm-scale-sets", "vpnclient-windows", "wac", "wac-installer", "web-app-database", "web-application-firewall-policies-waf", "web-jobs", "web-slots", "web-test", "website-power", "website-staging", "windows-notification-services", "windows10-core-services", "workbooks", "worker-container-app", "workflow", "workload-orchestration", "workspace-gateway", "workspaces"], "gcp": ["access-context-manager", "administration", "advanced-agent-modeling", "advanced-solutions-lab", "agent-assist", "ai-hub", "ai-platform", "ai-platform-unified", "analytics-hub", "anthos", "anthos-config-management", "anthos-service-mesh", "api", "api-analytics", "api-monetization", "apigee-api-platform", "apigee-sense", "app-engine", "artifact-registry", "asset-inventory", "assured-workloads", "auto-ml", "auto-ml-natural-language", "auto-ml-tables", "auto-ml-translation", "auto-ml-video-intelligence", "auto-ml-vision", "bare-metal-solutions", "batch", "beyondcorp", "big-query", "bigtable", "billing", "binary-authorization", "catalog", "certificate-authority-service", "certificate-manager", "cloud-api-gateway", "cloud-apis", "cloud-armor", "cloud-asset-inventory", "cloud-audit-logs", "cloud-build", "cloud-cdn", "cloud-code", "cloud-composer", "cloud-data-fusion", "cloud-deploy", "cloud-deployment-manager", "cloud-dns", "cloud-domains", "cloud-ekm", "cloud-endpoints", "cloud-external-ip-addresses", "cloud-firewall-rules", "cloud-for-marketing", "cloud-functions", "cloud-generic", "cloud-gpu", "cloud-healthcare-api", "cloud-healthcare-marketplace", "cloud-hsm", "cloud-ids", "cloud-inference-api", "cloud-interconnect", "cloud-jobs-api", "cloud-load-balancing", "cloud-logging", "cloud-media-edge", "cloud-monitoring", "cloud-nat", "cloud-natural-language-api", "cloud-network", "cloud-ops", "cloud-optimization-ai", "cloud-optimization-ai-fleet-routing-api", "cloud-router", "cloud-routes", "cloud-run", "cloud-run-for-anthos", "cloud-scheduler", "cloud-security-scanner", "cloud-shell", "cloud-spanner", "cloud-sql", "cloud-storage", "cloud-tasks", "cloud-test-lab", "cloud-tpu", "cloud-translation-api", "cloud-vision-api", "cloud-vpn", "compute-engine", "configuration-management", "connectivity-test", "connectors", "contact-center-ai", "container-optimized-os", "container-registry", "data-catalog", "data-labeling", "data-layers", "data-loss-prevention-api", "data-qn-a", "data-studio", "data-transfer", "database-migration-service", "dataflow", "datalab", "dataplex", "datapol", "dataprep", "dataproc", "dataproc-metastore", "datashare", "datastore", "datastream", "debugger", "developer-portal", "dialogflow", "dialogflow-cx", "dialogflow-insights", "document-ai", "early-access-center", "error-reporting", "eventarc", "filestore", "financial-services-marketplace", "firestore", "fleet-engine", "free-trial", "game-servers", "gce-systems-management", "genomics", "gke-on-prem", "google-cloud-marketplace", "google-kubernetes-engine", "google-maps-platform", "healthcare-nlp-api", "home", "identity-and-access-management", "identity-aware-proxy", "identity-platform", "iot-core", "iot-edge", "key-access-justifications", "key-management-service", "kuberun", "launcher", "local-ssd", "looker", "managed-service-for-microsoft-active-directory", "media-translation-api", "memorystore", "migrate-for-anthos", "migrate-for-compute-engine", "my-cloud", "network-connectivity-center", "network-intelligence-center", "network-security", "network-tiers", "network-topology", "onboarding", "os-configuration-management", "os-inventory-management", "os-patch-management", "partner-interconnect", "partner-portal", "performance-dashboard", "permissions", "persistent-disk", "phishing-protection", "policy-analyzer", "premium-network-tier", "private-connectivity", "private-service-connect", "producer-portal", "profiler", "project", "pub-sub", "quantum-engine", "quotas", "real-world-insights", "recommendations-ai", "release-notes", "retail-api", "risk-manager", "runtime-config", "secret-manager", "security", "security-command-center", "security-health-advisor", "security-key-enforcement", "service-discovery", "speech-to-text", "stackdriver", "standard-network-tier", "stream-suite", "support", "tensorflow-enterprise", "text-to-speech", "tools-for-powershell", "trace", "traffic-director", "transfer", "transfer-appliance", "user-preferences", "vertex-ai", "video-intelligence-api", "virtual-private-cloud", "visual-inspection", "vmware-engine", "web-risk", "web-security-scanner", "workflows", "workload-identity-pool"], "tech": ["aarch64", "adobe-illustrator", "adobe-photoshop", "adobe-premiere-pro", "adobe-xd", "adonis-js", "after-effects", "airflow", "akka", "algolia", "alpine-js", "amazon-web-services", "anaconda", "android", "android-studio", "angular", "angular-js", "ansible", "ant-design", "apache", "apl", "appcelerator", "apple", "apple-safari", "appwrite", "arch-linux", "arduino", "argo-cd", "astro", "atom", "autodesk-maya", "autodesk-shot-grid", "awk", "azios", "azure", "azure-devops", "azure-sql-database", "babel", "backbone-js", "ballerina", "bamboo", "bash", "behance", "bitbucket", "blender", "bootstrap", "bower", "browserstack", "bulma", "bun", "c", "cairo-graphics", "cake-php", "canva", "capacitor", "cassandra", "cent-os", "chrome", "circle-ci", "clarity", "clion", "clojure", "clojure-script", "cloudflare", "cloudflare-workers", "cmake", "code-igniter", "code-pen", "codeac", "codecov", "coffee-script", "composer", "confluence", "consul", "contao", "corejs", "cosmosdb", "couchdb", "cplusplus", "crystal", "csharp", "css3", "cucumber", "cypress", "d3js", "dart", "data-grip", "data-spell", "dbeaver", "debian", "deno", "devicon", "digital-ocean", "discord-js", "django", "django-rest", "docker", "doctrine", "dropwizard", "drupal", "eclipse-ceylon", "eclipse-ide", "eclipse-vert-x", "elasticbeats", "elasticsearch", "electron", "eleventy-11ty", "elixir", "elm", "embedded-c", "ember-js", "envoy", "erlang", "eslint", "express", "facebook", "fast-api", "fastify", "fauna", "feathers", "fedora", "figma", "file-zilla", "firebase", "firefox", "flask", "flutter", "fortran", "foundation", "fsharp", "gatling", "gatsby", "gazebo", "gcc", "gentoo", "ghost", "gimp", "git", "gitbook", "github", "github-actions", "github-codespaces", "gitlab", "gitpod", "gitter", "gnu-emacs", "go", "go-land", "godot-engine", "google", "google-cloud", "gradle", "grafana", "grails", "graphql", "groovy", "grunt-js", "gulp-js", "hadoop", "handlebars", "hardhat", "harvester", "hashicorp-vault", "haskell", "haxe", "helm", "heroku", "hibernate", "homebrew", "html5", "hugo", "ibm-spss-statistics", "ie10", "ifttt", "influxdb", "inkscape", "insomnia", "intellij-idea", "ionic", "jaeger", "jamstack", "jasmine", "java", "javascript", "jeet", "jekyll", "jenkins", "jest", "jetbrains", "jira", "jira-align", "jquery", "json", "jule", "julia", "junit", "jupyter", "k3os", "k3s", "kafka", "kaggle", "karate", "karma", "keras", "kibana", "knex-js", "knockout", "kotlin", "krakenjs", "ktor", "kubernetes", "labview", "laravel", "latex", "less-js", "linkedin", "linux", "liquibase", "livewire", "llvm", "logstash", "lua", "lumen", "magento", "markdown", "material-ui", "materialize", "matlab", "matplotlib", "maven", "meteor-js", "microsoft-sql-server", "minitab", "mob-x", "mocha", "modx", "moleculer", "mongodb", "mongoose-js", "moodle", "ms-dos", "mysql", "nano", "nerog", "nestjs", "net", "net-core", "network-x", "new4j", "nextjs", "nginx", "nhibernate", "nim", "nimble", "nix", "nodejs", "nodemon", "nodewebkit", "npm", "nuget", "num-py", "nuxt-js", "objective-c", "ocaml", "oh-my-zsh", "okta", "open-al", "open-api", "open-cl", "open-cv", "open-gl", "open-stack", "open-suse", "open-telemetry", "opera", "oracle", "p5js", "packer", "pandas", "perl", "pf-sense", "phalcon", "phoenix-framework", "photon-engine", "php", "php-storm", "playwrite", "ploty", "podman", "polygon", "portainer", "postcss", "postgresql", "postman", "powershell", "processing", "prometheus", "protractor", "purescript", "putty", "pycharm", "pyscript", "pytest", "python", "python-poetry", "pytorch", "qodana", "qt", "quarkus", "quasar", "qwik", "r", "rabbitmq", "rancher", "raspberrypi", "reach", "react", "react-bootstrap", "realm", "red-cube-s-epic-compiler-thingy-programming-re-ct", "redhat", "redis", "redux", "ren-py", "rider", "robot-operating-system-ros", "rocksdb", "rollup-js", "rspec", "rstudio", "ruby", "ruby-mine", "ruby-on-rails", "rust", "salesforce", "sanity", "sass", "scala", "scalingo", "sdl", "selenium", "sema-software", "sequelize", "shopware", "sketch", "slack", "socket-io", "solid-js", "solidity", "sonarqube", "sourcetree", "spark", "splunk", "spring", "sql-developer", "sqlalchemy", "sqlite", "ssh", "stackoverflow", "stata", "storybook", "streamlit", "stylus", "subversion", "svelte", "swagger", "swift", "symfony", "tailwind-css", "tauri", "tensorflow", "terraform", "tex", "the-algorithms", "three-js", "titanium-sdk", "tomcat", "tortoise-git", "tower", "traefik-mesh", "traefik-proxy", "travis-ci", "trello", "twitter", "typescript", "typo3", "ubuntu", "uml", "unity", "unix", "unreal-engine", "uwsgi", "v8", "vagrant", "vala", "vercel", "veutify", "vim", "visualstudio", "vite", "vitejs", "vscode", "vsphere", "vue", "vue-storefront", "vyper", "webassembly", "webflow", "weblate", "webpack", "webstorm", "windows8", "windows11", "woo-commerce", "wordpress", "xamarin", "xcode", "xml", "yaml", "yarn", "yii-framework", "yuno-host", "zend-framework", "zig"] })]
|
|
5
|
+
.flatMap(([group, names]) => names.map((name) => group + ':' + name));
|
|
2
6
|
export const LibIcons = [
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
].join(
|
|
7
|
+
'likec4lib {',
|
|
8
|
+
' icons {',
|
|
9
|
+
...icons.map((icon) => ' ' + icon),
|
|
10
|
+
' }',
|
|
11
|
+
'}',
|
|
12
|
+
].join('\n');
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { NoopFileSystem } from './filesystem';
|
|
|
2
2
|
import { LikeC4FileSystem } from './filesystem/LikeC4FileSystem';
|
|
3
3
|
import { WithMCPServer } from './mcp/server/WithMCPServer';
|
|
4
4
|
import { type LikeC4Services, type LikeC4SharedServices } from './module';
|
|
5
|
+
import { WithLikeC4ManualLayouts } from './views/LikeC4ManualLayouts';
|
|
5
6
|
export { getLspConnectionSink, logger as lspLogger } from './logger';
|
|
6
7
|
export type { DocumentParser, LikeC4ModelBuilder, LikeC4ModelLocator, LikeC4ModelParser } from './model';
|
|
7
8
|
export type { LikeC4LanguageServices } from './LikeC4LanguageServices';
|
|
@@ -11,6 +12,7 @@ export type { LikeC4Services, LikeC4SharedServices } from './module';
|
|
|
11
12
|
export type { LikeC4Views } from './views';
|
|
12
13
|
export type { ProjectsManager } from './workspace';
|
|
13
14
|
export { LikeC4FileSystem, NoopFileSystem, WithMCPServer };
|
|
15
|
+
export { WithLikeC4ManualLayouts };
|
|
14
16
|
type StartLanguageServerOptions = {
|
|
15
17
|
/**
|
|
16
18
|
* Whether to enable the file system watcher.
|
|
@@ -22,6 +24,11 @@ type StartLanguageServerOptions = {
|
|
|
22
24
|
* @default 'sse'
|
|
23
25
|
*/
|
|
24
26
|
enableMCP?: false | 'sse' | 'stdio';
|
|
27
|
+
/**
|
|
28
|
+
* Whether to enable manual layouts, stored in json5 files.
|
|
29
|
+
* @default true
|
|
30
|
+
*/
|
|
31
|
+
enableManualLayouts?: boolean;
|
|
25
32
|
};
|
|
26
33
|
export declare function startLanguageServer(options?: StartLanguageServerOptions): {
|
|
27
34
|
shared: LikeC4SharedServices;
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { configureLogger, getConsoleSink, getTextFormatter } from '@likec4/log';
|
|
2
|
+
import { defu } from 'defu';
|
|
3
|
+
import { startLanguageServer as startLanguim } from 'langium/lsp';
|
|
4
|
+
import { createConnection, ProposedFeatures } from 'vscode-languageserver/node';
|
|
5
|
+
import { NoopFileSystem } from './filesystem';
|
|
6
|
+
import { LikeC4FileSystem } from './filesystem/LikeC4FileSystem';
|
|
7
|
+
import { getTelemetrySink, logger } from './logger';
|
|
8
|
+
import { WithMCPServer } from './mcp/server/WithMCPServer';
|
|
9
|
+
import { createLanguageServices } from './module';
|
|
10
|
+
import { ConfigurableLayouter } from './views/ConfigurableLayouter';
|
|
11
|
+
import { WithLikeC4ManualLayouts } from './views/LikeC4ManualLayouts';
|
|
12
|
+
export { getLspConnectionSink, logger as lspLogger } from './logger';
|
|
13
|
+
export { isLikeC4Builtin } from './likec4lib';
|
|
14
|
+
export { createLanguageServices } from './module';
|
|
15
|
+
export { LikeC4FileSystem, NoopFileSystem, WithMCPServer };
|
|
16
|
+
export { WithLikeC4ManualLayouts };
|
|
17
|
+
export function startLanguageServer(options) {
|
|
18
|
+
const opts = defu(options, {
|
|
19
|
+
enableWatcher: true,
|
|
20
|
+
enableMCP: 'sse',
|
|
21
|
+
enableManualLayouts: true,
|
|
22
|
+
});
|
|
23
|
+
const connection = createConnection(ProposedFeatures.all);
|
|
24
|
+
configureLogger({
|
|
25
|
+
sinks: {
|
|
26
|
+
console: getConsoleSink({
|
|
27
|
+
formatter: getTextFormatter(),
|
|
28
|
+
}),
|
|
29
|
+
telemetry: getTelemetrySink(connection),
|
|
30
|
+
},
|
|
31
|
+
loggers: [
|
|
32
|
+
{
|
|
33
|
+
category: ['likec4'],
|
|
34
|
+
sinks: ['console', 'telemetry'],
|
|
35
|
+
},
|
|
36
|
+
],
|
|
37
|
+
});
|
|
38
|
+
logger.info('Starting LikeC4 language server');
|
|
39
|
+
// Inject the shared services and language-specific services
|
|
40
|
+
const services = createLanguageServices({
|
|
41
|
+
connection,
|
|
42
|
+
...LikeC4FileSystem(opts.enableWatcher),
|
|
43
|
+
...opts.enableMCP && WithMCPServer(opts.enableMCP),
|
|
44
|
+
...opts.enableManualLayouts && WithLikeC4ManualLayouts,
|
|
45
|
+
}, {
|
|
46
|
+
likec4: {
|
|
47
|
+
...ConfigurableLayouter.likec4,
|
|
48
|
+
},
|
|
49
|
+
});
|
|
50
|
+
// Start the language server with the shared services
|
|
51
|
+
startLanguim(services.shared);
|
|
52
|
+
return services;
|
|
53
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { LibIcons } from
|
|
2
|
-
export const Scheme =
|
|
1
|
+
import { LibIcons } from './generated-lib/icons';
|
|
2
|
+
export const Scheme = 'likec4builtin';
|
|
3
3
|
export const Uri = `${Scheme}:///likec4/lib/icons.c4`;
|
|
4
4
|
export { LibIcons as Content };
|
|
5
5
|
export function isLikeC4Builtin(uri) {
|
|
6
|
-
|
|
6
|
+
return uri.scheme === Scheme;
|
|
7
7
|
}
|
package/dist/logger.js
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { nonexhaustive } from '@likec4/core/utils';
|
|
2
|
+
import { errorFromLogRecord, getMessageOnlyFormatter, getTextFormatter, loggable, logger as root, } from '@likec4/log';
|
|
3
|
+
export const logger = root.getChild('server');
|
|
4
|
+
export { logger as serverLogger, };
|
|
5
|
+
// export const logger = root
|
|
6
|
+
export function logError(err) {
|
|
7
|
+
logger.error(loggable(err));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Logs an error as warning (not critical)
|
|
11
|
+
*/
|
|
12
|
+
export function logWarnError(err) {
|
|
13
|
+
logger.warn(loggable(err));
|
|
14
|
+
}
|
|
15
|
+
export function getLspConnectionSink(connection, props) {
|
|
16
|
+
const format = props?.formatter ?? getTextFormatter({
|
|
17
|
+
format: ({ category, message }) => {
|
|
18
|
+
return `${category} ${message}`;
|
|
19
|
+
},
|
|
20
|
+
});
|
|
21
|
+
return (logObj) => {
|
|
22
|
+
try {
|
|
23
|
+
switch (logObj.level) {
|
|
24
|
+
case 'trace':
|
|
25
|
+
case 'debug':
|
|
26
|
+
connection.console.debug(format(logObj));
|
|
27
|
+
break;
|
|
28
|
+
case 'info':
|
|
29
|
+
connection.console.info(format(logObj));
|
|
30
|
+
break;
|
|
31
|
+
case 'warning':
|
|
32
|
+
connection.console.warn(format(logObj));
|
|
33
|
+
break;
|
|
34
|
+
case 'error':
|
|
35
|
+
case 'fatal': {
|
|
36
|
+
connection.console.error(format(logObj));
|
|
37
|
+
break;
|
|
38
|
+
}
|
|
39
|
+
default:
|
|
40
|
+
nonexhaustive(logObj.level);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
catch (e) {
|
|
44
|
+
console.error('Error while logging to LSP connection:', e);
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
export function getTelemetrySink(connection) {
|
|
49
|
+
const messageOnly = getMessageOnlyFormatter();
|
|
50
|
+
return (logObj) => {
|
|
51
|
+
try {
|
|
52
|
+
switch (logObj.level) {
|
|
53
|
+
case 'error':
|
|
54
|
+
case 'fatal': {
|
|
55
|
+
const err = errorFromLogRecord(logObj);
|
|
56
|
+
if (err) {
|
|
57
|
+
connection.telemetry.logEvent({
|
|
58
|
+
eventName: 'error',
|
|
59
|
+
message: `${err.name}: ${err.message}`,
|
|
60
|
+
category: logObj.category.join('.'),
|
|
61
|
+
...(err.stack && {
|
|
62
|
+
stack: err.stack,
|
|
63
|
+
}),
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
connection.telemetry.logEvent({
|
|
68
|
+
eventName: 'error',
|
|
69
|
+
message: messageOnly(logObj),
|
|
70
|
+
category: logObj.category.join('.'),
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
break;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
catch (e) {
|
|
78
|
+
console.error('Error while logging to LSP connection:', e);
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { LangiumDocument } from 'langium';
|
|
2
|
+
import type { CodeActionProvider } from 'langium/lsp';
|
|
3
|
+
import { type CodeActionParams, CodeAction, Command } from 'vscode-languageserver-protocol';
|
|
4
|
+
type CommandOrCodeAction = Command | CodeAction;
|
|
5
|
+
export declare class LikeC4CodeActionProvider implements CodeActionProvider {
|
|
6
|
+
/**
|
|
7
|
+
* Handle a code action request.
|
|
8
|
+
*
|
|
9
|
+
* @throws `OperationCancelled` if cancellation is detected during execution
|
|
10
|
+
* @throws `ResponseError` if an error is detected that should be sent as response to the client
|
|
11
|
+
*/
|
|
12
|
+
getCodeActions(document: LangiumDocument, params: CodeActionParams): CommandOrCodeAction[] | undefined;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { CodeAction, Command, TextEdit, } from 'vscode-languageserver-protocol';
|
|
2
|
+
export class LikeC4CodeActionProvider {
|
|
3
|
+
/**
|
|
4
|
+
* Handle a code action request.
|
|
5
|
+
*
|
|
6
|
+
* @throws `OperationCancelled` if cancellation is detected during execution
|
|
7
|
+
* @throws `ResponseError` if an error is detected that should be sent as response to the client
|
|
8
|
+
*/
|
|
9
|
+
getCodeActions(document, params) {
|
|
10
|
+
const diagnostics = params.context.diagnostics;
|
|
11
|
+
const actions = [];
|
|
12
|
+
for (const diagnostic of diagnostics) {
|
|
13
|
+
if (diagnostic.code === 'manual-layout-v1') {
|
|
14
|
+
actions.push({
|
|
15
|
+
title: 'Migrate Manual Layouts',
|
|
16
|
+
command: Command.create('Migrate Manual Layouts', 'likec4.migrate-manual-layouts'),
|
|
17
|
+
edit: {
|
|
18
|
+
changes: {
|
|
19
|
+
// This is a dummy edit to make VSCode accept the code action as a quick fix.
|
|
20
|
+
[document.textDocument.uri]: [TextEdit.insert(params.range.start, '')],
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
kind: 'quickfix',
|
|
24
|
+
isPreferred: true,
|
|
25
|
+
diagnostics: [
|
|
26
|
+
diagnostic,
|
|
27
|
+
],
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
return actions.length > 0 ? actions : undefined;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { DocumentState } from 'langium';
|
|
2
|
+
import { isLikeC4LangiumDocument, ViewOps } from '../ast';
|
|
3
|
+
import { logger } from '../logger';
|
|
4
|
+
import { projectIdFrom } from '../utils';
|
|
5
|
+
export class LikeC4CodeLensProvider {
|
|
6
|
+
services;
|
|
7
|
+
constructor(services) {
|
|
8
|
+
this.services = services;
|
|
9
|
+
}
|
|
10
|
+
async provideCodeLens(doc, _params, cancelToken) {
|
|
11
|
+
if (!isLikeC4LangiumDocument(doc)) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
if (doc.state <= DocumentState.Linked) {
|
|
15
|
+
logger.debug(`Waiting for document ${doc.uri.path} to be Linked`);
|
|
16
|
+
await this.services.shared.workspace.DocumentBuilder.waitUntil(DocumentState.Linked, doc.uri, cancelToken);
|
|
17
|
+
logger.debug(`Document is linked`);
|
|
18
|
+
}
|
|
19
|
+
const views = doc.parseResult.value.views.flatMap(v => v.views);
|
|
20
|
+
return views.flatMap(ast => {
|
|
21
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
22
|
+
const viewId = ViewOps.readId(ast);
|
|
23
|
+
const range = ast.$cstNode?.range;
|
|
24
|
+
if (!range || !viewId) {
|
|
25
|
+
return [];
|
|
26
|
+
}
|
|
27
|
+
const projectId = projectIdFrom(ast);
|
|
28
|
+
return {
|
|
29
|
+
range: {
|
|
30
|
+
start: range.start,
|
|
31
|
+
end: {
|
|
32
|
+
line: range.start.line,
|
|
33
|
+
character: range.start.character + 4,
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
command: {
|
|
37
|
+
command: 'likec4.open-preview',
|
|
38
|
+
arguments: [viewId, projectId],
|
|
39
|
+
title: 'open preview',
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -4,6 +4,8 @@ import type { LikeC4Services } from '../module';
|
|
|
4
4
|
export declare class LikeC4CompletionProvider extends DefaultCompletionProvider {
|
|
5
5
|
protected services: LikeC4Services;
|
|
6
6
|
constructor(services: LikeC4Services);
|
|
7
|
-
readonly completionOptions:
|
|
7
|
+
readonly completionOptions: {
|
|
8
|
+
triggerCharacters: string[];
|
|
9
|
+
};
|
|
8
10
|
protected completionForKeyword(context: CompletionContext, keyword: GrammarAST.Keyword, acceptor: CompletionAcceptor): MaybePromise<void>;
|
|
9
11
|
}
|