summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelIosik.go
blob: b8744c838545af3e7face53fc6bfb63988b380ee (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
42
43
44
45
46
47
48
49
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// IosikEv2VpnConfiguration By providing the configurations in this profile you can instruct the iOS device to connect to desired IKEv2 VPN endpoint.
type IosikEv2VpnConfiguration struct {
	// IOSVPNConfiguration is the base model of IosikEv2VpnConfiguration
	IOSVPNConfiguration
	// ChildSecurityAssociationParameters Child Security Association Parameters
	ChildSecurityAssociationParameters *IOSVPNSecurityAssociationParameters `json:"childSecurityAssociationParameters,omitempty"`
	// ClientAuthenticationType Type of Client Authentication the VPN client will use.
	ClientAuthenticationType *VPNClientAuthenticationType `json:"clientAuthenticationType,omitempty"`
	// DeadPeerDetectionRate Determine how often to check if a peer connection is still active.
	DeadPeerDetectionRate *VPNDeadPeerDetectionRate `json:"deadPeerDetectionRate,omitempty"`
	// DisableMobilityAndMultihoming Disable MOBIKE
	DisableMobilityAndMultihoming *bool `json:"disableMobilityAndMultihoming,omitempty"`
	// DisableRedirect Disable Redirect
	DisableRedirect *bool `json:"disableRedirect,omitempty"`
	// EnableCertificateRevocationCheck Enables a best-effort revocation check; server response timeouts will not cause it to fail
	EnableCertificateRevocationCheck *bool `json:"enableCertificateRevocationCheck,omitempty"`
	// EnableEAP Enables EAP only authentication
	EnableEAP *bool `json:"enableEAP,omitempty"`
	// EnablePerfectForwardSecrecy Enable Perfect Forward Secrecy (PFS).
	EnablePerfectForwardSecrecy *bool `json:"enablePerfectForwardSecrecy,omitempty"`
	// EnableUseInternalSubnetAttributes Enable Use Internal Subnet Attributes.
	EnableUseInternalSubnetAttributes *bool `json:"enableUseInternalSubnetAttributes,omitempty"`
	// LocalIdentifier Method of identifying the client that is trying to connect via VPN.
	LocalIdentifier *VPNLocalIdentifier `json:"localIdentifier,omitempty"`
	// RemoteIdentifier Address of the IKEv2 server. Must be a FQDN, UserFQDN, network address, or ASN1DN
	RemoteIdentifier *string `json:"remoteIdentifier,omitempty"`
	// SecurityAssociationParameters Security Association Parameters
	SecurityAssociationParameters *IOSVPNSecurityAssociationParameters `json:"securityAssociationParameters,omitempty"`
	// ServerCertificateCommonName Common name of the IKEv2 Server Certificate used in Server Authentication
	ServerCertificateCommonName *string `json:"serverCertificateCommonName,omitempty"`
	// ServerCertificateIssuerCommonName Issuer Common name of the IKEv2 Server Certificate issuer used in Authentication
	ServerCertificateIssuerCommonName *string `json:"serverCertificateIssuerCommonName,omitempty"`
	// ServerCertificateType The type of certificate the VPN server will present to the VPN client for authentication.
	ServerCertificateType *VPNServerCertificateType `json:"serverCertificateType,omitempty"`
	// SharedSecret Used when Shared Secret Authentication is selected
	SharedSecret *string `json:"sharedSecret,omitempty"`
	// TLSMaximumVersion The maximum TLS version to be used with EAP-TLS authentication
	TLSMaximumVersion *string `json:"tlsMaximumVersion,omitempty"`
	// TLSMinimumVersion The minimum TLS version to be used with EAP-TLS authentication
	TLSMinimumVersion *string `json:"tlsMinimumVersion,omitempty"`
	// AllowDefaultSecurityAssociationParameters Allows the use of security association parameters by setting all parameters to the device's default unless explicitly specified.
	AllowDefaultSecurityAssociationParameters *bool `json:"allowDefaultSecurityAssociationParameters,omitempty"`
	// AllowDefaultChildSecurityAssociationParameters Allows the use of child security association parameters by setting all parameters to the device's default unless explicitly specified.
	AllowDefaultChildSecurityAssociationParameters *bool `json:"allowDefaultChildSecurityAssociationParameters,omitempty"`
}