Skip to content

CombinedGroupServiceAuthorization

Bases: OCIType

Authorize a group service.

Attributes:

service_name (str):

authorized_quantity (Optional[UnboundedPositiveInt]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class CombinedGroupServiceAuthorization(OCIType):
    """Authorize a group service.

    Attributes:

        service_name (str):

        authorized_quantity (Optional[UnboundedPositiveInt]):

    """

    service_name: str = field(metadata={"alias": "serviceName"})

    authorized_quantity: Optional[UnboundedPositiveInt] = field(
        default=None, metadata={"alias": "authorizedQuantity"}
    )