1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for
5# license information.
6#
7# Code generated by Microsoft (R) AutoRest Code Generator.
8# Changes may cause incorrect behavior and will be lost if the code is
9# regenerated.
10# --------------------------------------------------------------------------
11
12from enum import Enum
13
14
15class EndpointStatus(str, Enum):
16
17    enabled = "Enabled"
18    disabled = "Disabled"
19
20
21class EndpointMonitorStatus(str, Enum):
22
23    checking_endpoint = "CheckingEndpoint"
24    online = "Online"
25    degraded = "Degraded"
26    disabled = "Disabled"
27    inactive = "Inactive"
28    stopped = "Stopped"
29
30
31class ProfileMonitorStatus(str, Enum):
32
33    checking_endpoints = "CheckingEndpoints"
34    online = "Online"
35    degraded = "Degraded"
36    disabled = "Disabled"
37    inactive = "Inactive"
38
39
40class MonitorProtocol(str, Enum):
41
42    http = "HTTP"
43    https = "HTTPS"
44    tcp = "TCP"
45
46
47class ProfileStatus(str, Enum):
48
49    enabled = "Enabled"
50    disabled = "Disabled"
51
52
53class TrafficRoutingMethod(str, Enum):
54
55    performance = "Performance"
56    priority = "Priority"
57    weighted = "Weighted"
58    geographic = "Geographic"
59    multi_value = "MultiValue"
60    subnet = "Subnet"
61
62
63class TrafficViewEnrollmentStatus(str, Enum):
64
65    enabled = "Enabled"
66    disabled = "Disabled"
67