diff --git a/.vscode/C4.code-snippets b/.vscode/C4.code-snippets index 275dac1..0800b8b 100644 --- a/.vscode/C4.code-snippets +++ b/.vscode/C4.code-snippets @@ -59,6 +59,24 @@ ], "description": "Add Container with Description to C4 diagram" }, + "C4_ContainerDb": { + "scope": "diagram", + "prefix": "Database Container", + "body": [ + "ContainerDb(${1:alias}, \"${2:label}\", \"${3:technology}\")", + "$0" + ], + "description": "Add Database Container to C4 diagram" + }, + "C4_ContainerDb_Descr": { + "scope": "diagram", + "prefix": "Database Container with Description", + "body": [ + "ContainerDb(${1:alias}, \"${2:label}\", \"${3:technology}\", \"${4:description}\")", + "$0" + ], + "description": "Add Database Container with Description to C4 diagram" + }, "C4_Container_Boundary": { "scope": "diagram", "prefix": [ @@ -90,6 +108,24 @@ ], "description": "Add Component with Description to C4 diagram" }, + "C4_ComponentDb": { + "scope": "diagram", + "prefix": "Database Component", + "body": [ + "ComponentDb(${1:alias}, \"${2:label}\", \"${3:technology}\")", + "$0" + ], + "description": "Add Database Component to C4 diagram" + }, + "C4_ComponentDb_Descr": { + "scope": "diagram", + "prefix": "Database Component with Description", + "body": [ + "ComponentDb(${1:alias}, \"${2:label}\", \"${3:technology}\", \"${4:description}\")", + "$0" + ], + "description": "Add Database Component with Description to C4 diagram" + }, "C4_System": { "scope": "diagram", "prefix": "System",