From cfe9187e3a966b05cd42f9800e06a97a9a33b7a0 Mon Sep 17 00:00:00 2001 From: medusa Date: Sat, 1 Jun 2024 05:00:09 +0000 Subject: [PATCH] Update work/tbx/meraki/meraki_api.md --- work/tbx/meraki/meraki_api.md | 48 +++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/work/tbx/meraki/meraki_api.md b/work/tbx/meraki/meraki_api.md index 049725b..79df7e0 100644 --- a/work/tbx/meraki/meraki_api.md +++ b/work/tbx/meraki/meraki_api.md @@ -1254,3 +1254,51 @@ The Meraki Dashboard API provides a robust set of tools for managing and monitor 4. Retrieve uplink addresses for devices. This allows for efficient automation and detailed network management, enabling you to streamline network operations and create custom solutions to fit your specific needs. If you have any questions or need further assistance, feel free to ask! + +--- + +Sure! Here's a Mermaid chart that visualizes the hierarchical structure of Organizations, Networks, and Devices. You can use this chart on your GitHub site to illustrate the relationships and IDs associated with each entity. + +### Mermaid Chart Code + +```markdown +```mermaid +graph TD; + A[Organizations] --> B[Networks] + B --> C[Devices] + A -->|Each organization has a unique ID| B + B -->|Each network has a unique ID| C + C -->|Devices are identified by their serial numbers| C +``` +``` + +### Explanation + +- **Organizations**: The top-level entity. +- **Networks**: Child entities of organizations. +- **Devices**: Child entities of networks. + +### Adding the Mermaid Chart to Your GitHub Site + +1. **Create or Edit a Markdown File**: Open the Markdown file where you want to add the chart. + +2. **Insert the Mermaid Chart Code**: Copy and paste the Mermaid chart code into your Markdown file. + +3. **Enable Mermaid in GitHub Pages**: If you're using GitHub Pages with Jekyll, ensure that the `jekyll-mermaid` plugin is enabled in your `_config.yml` file. + +### Example Markdown File + +```markdown +# Understanding the Hierarchical Structure + +```mermaid +graph TD; + A[Organizations] --> B[Networks] + B --> C[Devices] + A -->|Each organization has a unique ID| B + B -->|Each network has a unique ID| C + C -->|Devices are identified by their serial numbers| C +``` +``` + +By adding this Mermaid chart to your GitHub site, you'll have a clear visual representation of the hierarchical structure within Meraki's organization, network, and device model. If you need further customization or have additional questions, feel free to ask! \ No newline at end of file