Preferred Color Group
A Preferred Color Group is a group of multiple colors in primary, secondary and tertiary colors with respective preferences.
Diagram
Classes
policy_object_profile (sdwan.feature_profiles)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
preferred_color_groups | List | [preferred_color_groups] | No |
preferred_color_groups (sdwan.feature_profiles.policy_object_profile)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
name | String | Regex: ^[^&<>! /"]{1,32}$ | Yes | |
description | String | No | ||
primary_colors | List | Choice[default , mpls , metro-ethernet , biz-internet , public-internet , lte , 3g , red , green , blue , gold , silver , bronze , custom1 , custom2 , custom3 , private1 , private2 , private3 , private4 , private5 , private6 ] | Yes | |
primary_path_preference | Choice | direct-path , multi-hop-path , all-paths | No | |
secondary_colors | List | Choice[default , mpls , metro-ethernet , biz-internet , public-internet , lte , 3g , red , green , blue , gold , silver , bronze , custom1 , custom2 , custom3 , private1 , private2 , private3 , private4 , private5 , private6 ] | No | |
secondary_path_preference | Choice | direct-path , multi-hop-path , all-paths | No | |
tertiary_colors | List | Choice[default , mpls , metro-ethernet , biz-internet , public-internet , lte , 3g , red , green , blue , gold , silver , bronze , custom1 , custom2 , custom3 , private1 , private2 , private3 , private4 , private5 , private6 ] | No | |
tertiary_path_preference | Choice | direct-path , multi-hop-path , all-paths | No |
Examples
Example-1: This example demonstrates how to configure a Preferred Color Group to have default and mpls as primary colors, custom1 and custom2 as secondary colors, followed by biz-internet and custom3 as tertiary colors. The primary, secondary and tertiary path preference takes value from all-paths, direct-path and multi-hop-path respectively.
sdwan: feature_profiles: policy_object_profile: preferred_color_groups: - name: preferred_color_group1 description: Preferred Color Group 1 primary_colors: - default - mpls primary_path_preference: all-paths secondary_colors: - custom1 - custom2 secondary_path_preference: direct-path tertiary_colors: - biz-internet - custom3 tertiary_path_preference: multi-hop-path