blob: aadfae7ef8d37ed3170399b1adbb140ae46d8213 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
from enum import Enum
from azure.core import CaseInsensitiveEnumMeta
from azure.ai.ml._utils._experimental import experimental
@experimental
class IPProtectionLevel(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"Intellectual property protection level."
ALL = "all"
NONE = "none"
|