blob: af47f1b5f4940b05c7ed3cf472f3a840b7679a8d (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// IOSVpnConfiguration By providing the configurations in this profile you can instruct the iOS device to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user.
type IOSVpnConfiguration struct {
// AppleVpnConfiguration is the base model of IOSVpnConfiguration
AppleVpnConfiguration
// ProviderType Provider type for per-app VPN.
ProviderType *VpnProviderType `json:"providerType,omitempty"`
// UserDomain Zscaler only. Enter a static domain to pre-populate the login field with in the Zscaler app. If this is left empty, the user's Azure Active Directory domain will be used instead.
UserDomain *string `json:"userDomain,omitempty"`
// StrictEnforcement Zscaler only. Blocks network traffic until the user signs into Zscaler app. "True" means traffic is blocked.
StrictEnforcement *bool `json:"strictEnforcement,omitempty"`
// CloudName Zscaler only. Zscaler cloud which the user is assigned to.
CloudName *string `json:"cloudName,omitempty"`
// ExcludeList Zscaler only. List of network addresses which are not sent through the Zscaler cloud.
ExcludeList []string `json:"excludeList,omitempty"`
// IdentityCertificate undocumented
IdentityCertificate *IOSCertificateProfileBase `json:"identityCertificate,omitempty"`
// DerivedCredentialSettings undocumented
DerivedCredentialSettings *DeviceManagementDerivedCredentialSettings `json:"derivedCredentialSettings,omitempty"`
}
|