Skip to content

Commit

Permalink
Feat(eos_cli_config_gen): Add schema for router_igmp
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausHolbechArista committed Oct 3, 2022
1 parent bf90e6e commit 9cc0513
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,22 @@ router_general:
- name: <str>
```

## Router IGMP Configuration

### Variables

| Variable | Type | Required | Default | Value Restrictions | Description |
| -------- | ---- | -------- | ------- | ------------------ | ----------- |
| [<samp>router_igmp</samp>](## "router_igmp") | Dictionary | | | | Router IGMP Configuration |
| [<samp>&nbsp;&nbsp;ssm_aware</samp>](## "router_igmp.ssm_aware") | Boolean | | | | |

### YAML

```yaml
router_igmp:
ssm_aware: <bool>
```

## Sflow

### Variables
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1222,6 +1222,12 @@ keys:
name:
type: str
display_name: Dynamic Prefix List Name
router_igmp:
type: dict
display_name: Router IGMP Configuration
keys:
ssm_aware:
type: bool
sflow:
type: dict
display_name: Sflow
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# yaml-language-server: $schema=../../../../plugins/plugin_utils/schema/avd_meta_schema.json
# Line above is used by RedHat's YAML Schema vscode extension
# Use Ctrl + Space to get suggestions for every field. Autocomplete will pop up after typing 2 letters.
type: dict
keys:
router_igmp:
type: dict
display_name: Router IGMP Configuration
keys:
ssm_aware:
type: bool

0 comments on commit 9cc0513

Please sign in to comment.