Skip to content

DefaultNetworkClassOfService

Bases: OCIType

The default Network Class of Service to set during assignation/unassignation.

Attributes:

use_existing (Optional[bool]):

network_class_of_service_name (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class DefaultNetworkClassOfService(OCIType):
    """The default Network Class of Service to set during assignation/unassignation.

    Attributes:

        use_existing (Optional[bool]):

        network_class_of_service_name (Optional[str]):

    """

    use_existing: Optional[bool] = field(
        default=None, metadata={"alias": "useExisting"}
    )

    network_class_of_service_name: Optional[str] = field(
        default=None, metadata={"alias": "networkClassOfServiceName"}
    )