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