summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/VpnDeadPeerDetectionRateEnum.go
blob: 62a5a3022cd2926ce297e809f8320d5e44c0bbcb (plain) (blame)
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
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// VpnDeadPeerDetectionRate undocumented
type VpnDeadPeerDetectionRate int

const (
	// VpnDeadPeerDetectionRateVMedium undocumented
	VpnDeadPeerDetectionRateVMedium VpnDeadPeerDetectionRate = 0
	// VpnDeadPeerDetectionRateVNone undocumented
	VpnDeadPeerDetectionRateVNone VpnDeadPeerDetectionRate = 1
	// VpnDeadPeerDetectionRateVLow undocumented
	VpnDeadPeerDetectionRateVLow VpnDeadPeerDetectionRate = 2
	// VpnDeadPeerDetectionRateVHigh undocumented
	VpnDeadPeerDetectionRateVHigh VpnDeadPeerDetectionRate = 3
)

// VpnDeadPeerDetectionRatePMedium returns a pointer to VpnDeadPeerDetectionRateVMedium
func VpnDeadPeerDetectionRatePMedium() *VpnDeadPeerDetectionRate {
	v := VpnDeadPeerDetectionRateVMedium
	return &v
}

// VpnDeadPeerDetectionRatePNone returns a pointer to VpnDeadPeerDetectionRateVNone
func VpnDeadPeerDetectionRatePNone() *VpnDeadPeerDetectionRate {
	v := VpnDeadPeerDetectionRateVNone
	return &v
}

// VpnDeadPeerDetectionRatePLow returns a pointer to VpnDeadPeerDetectionRateVLow
func VpnDeadPeerDetectionRatePLow() *VpnDeadPeerDetectionRate {
	v := VpnDeadPeerDetectionRateVLow
	return &v
}

// VpnDeadPeerDetectionRatePHigh returns a pointer to VpnDeadPeerDetectionRateVHigh
func VpnDeadPeerDetectionRatePHigh() *VpnDeadPeerDetectionRate {
	v := VpnDeadPeerDetectionRateVHigh
	return &v
}