Source code for azure.ai.ml.constants._assets
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
from enum import Enum
from azure.core import CaseInsensitiveEnumMeta
from azure.ai.ml._utils._experimental import experimental
[docs]
@experimental
class IPProtectionLevel(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"Intellectual property protection level."
ALL = "all"
NONE = "none"