Bases: OCIType
A list of enterprise trunk priority weighted trunk groups 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[EnterpriseEnterpriseTrunkPriorityWeightedTrunkGroup]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementEnterpriseEnterpriseTrunkPriorityWeightedTrunkGroupList(OCIType):
"""A list of enterprise trunk priority weighted trunk groups 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[EnterpriseEnterpriseTrunkPriorityWeightedTrunkGroup]):
"""
trunk_group: List[EnterpriseEnterpriseTrunkPriorityWeightedTrunkGroup] = field(
metadata={"alias": "trunkGroup"}
)
|