Skip to content

FileRepositoryProtocolWebDAV20

Bases: OCIType

Attributes of the WebDav protocol when the file repository interface is using WebDav.

Attributes:

secure (bool):

net_address (str):

extended_file_capture_support (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class FileRepositoryProtocolWebDAV20(OCIType):
    """Attributes of the WebDav protocol when the file repository interface is using WebDav.

    Attributes:

        secure (bool):

        net_address (str):

        extended_file_capture_support (bool):

    """

    secure: bool = field(metadata={"alias": "secure"})

    net_address: str = field(metadata={"alias": "netAddress"})

    extended_file_capture_support: bool = field(
        metadata={"alias": "extendedFileCaptureSupport"}
    )