Bases: OCIType
A list of enterprise trunk priority weighted trunk groups in a group that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.
Attributes:
trunk_group (List[GroupEnterpriseTrunkPriorityWeightedTrunkGroup]):
Source code in src/mercury_ocip_fast/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementGroupEnterpriseTrunkPriorityWeightedTrunkGroupList(OCIType):
"""A list of enterprise trunk priority weighted trunk groups in a group that replaces a previously configured list.
By convention, an element of this type may be set nill to clear the list.
Attributes:
trunk_group (List[GroupEnterpriseTrunkPriorityWeightedTrunkGroup]):
"""
trunk_group: List[GroupEnterpriseTrunkPriorityWeightedTrunkGroup] = field(
metadata={"alias": "trunkGroup"}
)
|