1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from enum import Enum
class AlertNotifications(str, Enum):
on = "On" #: Get notifications on new alerts
off = "Off" #: Don't get notifications on new alerts
class AlertsToAdmins(str, Enum):
on = "On" #: Send notification on new alerts to the subscription's admins
off = "Off" #: Don't send notification on new alerts to the subscription's admins
class PricingTier(str, Enum):
free = "Free" #: Get free Azure security center experience with basic security features
standard = "Standard" #: Get the standard Azure security center experience with advanced security features
class AutoProvision(str, Enum):
on = "On" #: Install missing security agent on VMs automatically
off = "Off" #: Do not install security agent on the VMs automatically
class SettingKind(str, Enum):
data_export_setting = "DataExportSetting"
class SecurityFamily(str, Enum):
waf = "Waf"
ngfw = "Ngfw"
saas_waf = "SaasWaf"
va = "Va"
class Protocol(str, Enum):
tcp = "TCP"
udp = "UDP"
all = "*"
class Status(str, Enum):
revoked = "Revoked"
initiated = "Initiated"
class StatusReason(str, Enum):
expired = "Expired"
user_requested = "UserRequested"
newer_request_initiated = "NewerRequestInitiated"
class AadConnectivityState(str, Enum):
discovered = "Discovered"
not_licensed = "NotLicensed"
connected = "Connected"
class ExternalSecuritySolutionKind(str, Enum):
cef = "CEF"
ata = "ATA"
aad = "AAD"
|