summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/VpnDNSRuleModel.go
blob: 553aac66a79c2c923d2774d5053dd2f1d1da9a8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// VpnDNSRule undocumented
type VpnDNSRule struct {
	// Object is the base model of VpnDNSRule
	Object
	// Name Name.
	Name *string `json:"name,omitempty"`
	// Servers Servers.
	Servers []string `json:"servers,omitempty"`
	// ProxyServerURI Proxy Server Uri.
	ProxyServerURI *string `json:"proxyServerUri,omitempty"`
	// AutoTrigger Automatically connect to the VPN when the device connects to this domain: Default False.
	AutoTrigger *bool `json:"autoTrigger,omitempty"`
	// Persistent Keep this rule active even when the VPN is not connected: Default False
	Persistent *bool `json:"persistent,omitempty"`
}