Bases: OCIType
A list of service packs that replaces existing service packs assgined to the user.
If a service pack is already assigned to the user, the service quantitiy will be updated if included.
Attributes:
service_pack (List[CombinedServicePackAssignment]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementCombinedServicePackAssignmentList(OCIType):
"""A list of service packs that replaces existing service packs assgined to the user.
If a service pack is already assigned to the user, the service quantitiy will be updated if included.
Attributes:
service_pack (List[CombinedServicePackAssignment]):
"""
service_pack: List[CombinedServicePackAssignment] = field(
metadata={"alias": "servicePack"}
)
|