Source code for wolk.model.file_management_error_type

"""Enumeration of defined file management errors."""
#   Copyright 2020 WolkAbout Technology s.r.o.
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
from enum import Enum


[docs]class FileManagementErrorType(Enum): """Enumeration of available file management errors.""" UNKNOWN = "UNKNOWN" TRANSFER_PROTOCOL_DISABLED = "TRANSFER_PROTOCOL_DISABLED" UNSUPPORTED_FILE_SIZE = "UNSUPPORTED_FILE_SIZE" MALFORMED_URL = "MALFORMED_URL" FILE_HASH_MISMATCH = "FILE_HASH_MISMATCH" FILE_SYSTEM_ERROR = "FILE_SYSTEM_ERROR" RETRY_COUNT_EXCEEDED = "RETRY_COUNT_EXCEEDED"