Skip to content

CombinedServicePackAuthorization

Bases: OCIType

Authorize a service pack.

Attributes:

service_pack_name (str):

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

    Attributes:

        service_pack_name (str):

        authorized_quantity (Optional[UnboundedPositiveInt]):

    """

    service_pack_name: str = field(metadata={"alias": "servicePackName"})

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