blob: 6334ed63bcd2a359da8565ad6267293247787bca (
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
// VpnAuthenticationMethod undocumented
type VpnAuthenticationMethod int
const (
// VpnAuthenticationMethodVCertificate undocumented
VpnAuthenticationMethodVCertificate VpnAuthenticationMethod = 0
// VpnAuthenticationMethodVUsernameAndPassword undocumented
VpnAuthenticationMethodVUsernameAndPassword VpnAuthenticationMethod = 1
// VpnAuthenticationMethodVSharedSecret undocumented
VpnAuthenticationMethodVSharedSecret VpnAuthenticationMethod = 2
// VpnAuthenticationMethodVDerivedCredential undocumented
VpnAuthenticationMethodVDerivedCredential VpnAuthenticationMethod = 3
)
// VpnAuthenticationMethodPCertificate returns a pointer to VpnAuthenticationMethodVCertificate
func VpnAuthenticationMethodPCertificate() *VpnAuthenticationMethod {
v := VpnAuthenticationMethodVCertificate
return &v
}
// VpnAuthenticationMethodPUsernameAndPassword returns a pointer to VpnAuthenticationMethodVUsernameAndPassword
func VpnAuthenticationMethodPUsernameAndPassword() *VpnAuthenticationMethod {
v := VpnAuthenticationMethodVUsernameAndPassword
return &v
}
// VpnAuthenticationMethodPSharedSecret returns a pointer to VpnAuthenticationMethodVSharedSecret
func VpnAuthenticationMethodPSharedSecret() *VpnAuthenticationMethod {
v := VpnAuthenticationMethodVSharedSecret
return &v
}
// VpnAuthenticationMethodPDerivedCredential returns a pointer to VpnAuthenticationMethodVDerivedCredential
func VpnAuthenticationMethodPDerivedCredential() *VpnAuthenticationMethod {
v := VpnAuthenticationMethodVDerivedCredential
return &v
}
|