github.com/yaegashi/msgraph.go@v0.1.4/beta/EnumVPN.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // VPNAuthenticationMethod undocumented
     6  type VPNAuthenticationMethod string
     7  
     8  const (
     9  	// VPNAuthenticationMethodVCertificate undocumented
    10  	VPNAuthenticationMethodVCertificate VPNAuthenticationMethod = "certificate"
    11  	// VPNAuthenticationMethodVUsernameAndPassword undocumented
    12  	VPNAuthenticationMethodVUsernameAndPassword VPNAuthenticationMethod = "usernameAndPassword"
    13  	// VPNAuthenticationMethodVSharedSecret undocumented
    14  	VPNAuthenticationMethodVSharedSecret VPNAuthenticationMethod = "sharedSecret"
    15  	// VPNAuthenticationMethodVDerivedCredential undocumented
    16  	VPNAuthenticationMethodVDerivedCredential VPNAuthenticationMethod = "derivedCredential"
    17  )
    18  
    19  var (
    20  	// VPNAuthenticationMethodPCertificate is a pointer to VPNAuthenticationMethodVCertificate
    21  	VPNAuthenticationMethodPCertificate = &_VPNAuthenticationMethodPCertificate
    22  	// VPNAuthenticationMethodPUsernameAndPassword is a pointer to VPNAuthenticationMethodVUsernameAndPassword
    23  	VPNAuthenticationMethodPUsernameAndPassword = &_VPNAuthenticationMethodPUsernameAndPassword
    24  	// VPNAuthenticationMethodPSharedSecret is a pointer to VPNAuthenticationMethodVSharedSecret
    25  	VPNAuthenticationMethodPSharedSecret = &_VPNAuthenticationMethodPSharedSecret
    26  	// VPNAuthenticationMethodPDerivedCredential is a pointer to VPNAuthenticationMethodVDerivedCredential
    27  	VPNAuthenticationMethodPDerivedCredential = &_VPNAuthenticationMethodPDerivedCredential
    28  )
    29  
    30  var (
    31  	_VPNAuthenticationMethodPCertificate         = VPNAuthenticationMethodVCertificate
    32  	_VPNAuthenticationMethodPUsernameAndPassword = VPNAuthenticationMethodVUsernameAndPassword
    33  	_VPNAuthenticationMethodPSharedSecret        = VPNAuthenticationMethodVSharedSecret
    34  	_VPNAuthenticationMethodPDerivedCredential   = VPNAuthenticationMethodVDerivedCredential
    35  )
    36  
    37  // VPNClientAuthenticationType undocumented
    38  type VPNClientAuthenticationType string
    39  
    40  const (
    41  	// VPNClientAuthenticationTypeVUserAuthentication undocumented
    42  	VPNClientAuthenticationTypeVUserAuthentication VPNClientAuthenticationType = "userAuthentication"
    43  	// VPNClientAuthenticationTypeVDeviceAuthentication undocumented
    44  	VPNClientAuthenticationTypeVDeviceAuthentication VPNClientAuthenticationType = "deviceAuthentication"
    45  )
    46  
    47  var (
    48  	// VPNClientAuthenticationTypePUserAuthentication is a pointer to VPNClientAuthenticationTypeVUserAuthentication
    49  	VPNClientAuthenticationTypePUserAuthentication = &_VPNClientAuthenticationTypePUserAuthentication
    50  	// VPNClientAuthenticationTypePDeviceAuthentication is a pointer to VPNClientAuthenticationTypeVDeviceAuthentication
    51  	VPNClientAuthenticationTypePDeviceAuthentication = &_VPNClientAuthenticationTypePDeviceAuthentication
    52  )
    53  
    54  var (
    55  	_VPNClientAuthenticationTypePUserAuthentication   = VPNClientAuthenticationTypeVUserAuthentication
    56  	_VPNClientAuthenticationTypePDeviceAuthentication = VPNClientAuthenticationTypeVDeviceAuthentication
    57  )
    58  
    59  // VPNDeadPeerDetectionRate undocumented
    60  type VPNDeadPeerDetectionRate string
    61  
    62  const (
    63  	// VPNDeadPeerDetectionRateVMedium undocumented
    64  	VPNDeadPeerDetectionRateVMedium VPNDeadPeerDetectionRate = "medium"
    65  	// VPNDeadPeerDetectionRateVNone undocumented
    66  	VPNDeadPeerDetectionRateVNone VPNDeadPeerDetectionRate = "none"
    67  	// VPNDeadPeerDetectionRateVLow undocumented
    68  	VPNDeadPeerDetectionRateVLow VPNDeadPeerDetectionRate = "low"
    69  	// VPNDeadPeerDetectionRateVHigh undocumented
    70  	VPNDeadPeerDetectionRateVHigh VPNDeadPeerDetectionRate = "high"
    71  )
    72  
    73  var (
    74  	// VPNDeadPeerDetectionRatePMedium is a pointer to VPNDeadPeerDetectionRateVMedium
    75  	VPNDeadPeerDetectionRatePMedium = &_VPNDeadPeerDetectionRatePMedium
    76  	// VPNDeadPeerDetectionRatePNone is a pointer to VPNDeadPeerDetectionRateVNone
    77  	VPNDeadPeerDetectionRatePNone = &_VPNDeadPeerDetectionRatePNone
    78  	// VPNDeadPeerDetectionRatePLow is a pointer to VPNDeadPeerDetectionRateVLow
    79  	VPNDeadPeerDetectionRatePLow = &_VPNDeadPeerDetectionRatePLow
    80  	// VPNDeadPeerDetectionRatePHigh is a pointer to VPNDeadPeerDetectionRateVHigh
    81  	VPNDeadPeerDetectionRatePHigh = &_VPNDeadPeerDetectionRatePHigh
    82  )
    83  
    84  var (
    85  	_VPNDeadPeerDetectionRatePMedium = VPNDeadPeerDetectionRateVMedium
    86  	_VPNDeadPeerDetectionRatePNone   = VPNDeadPeerDetectionRateVNone
    87  	_VPNDeadPeerDetectionRatePLow    = VPNDeadPeerDetectionRateVLow
    88  	_VPNDeadPeerDetectionRatePHigh   = VPNDeadPeerDetectionRateVHigh
    89  )
    90  
    91  // VPNEncryptionAlgorithmType undocumented
    92  type VPNEncryptionAlgorithmType string
    93  
    94  const (
    95  	// VPNEncryptionAlgorithmTypeVAes256 undocumented
    96  	VPNEncryptionAlgorithmTypeVAes256 VPNEncryptionAlgorithmType = "aes256"
    97  	// VPNEncryptionAlgorithmTypeVDes undocumented
    98  	VPNEncryptionAlgorithmTypeVDes VPNEncryptionAlgorithmType = "des"
    99  	// VPNEncryptionAlgorithmTypeVTripleDes undocumented
   100  	VPNEncryptionAlgorithmTypeVTripleDes VPNEncryptionAlgorithmType = "tripleDes"
   101  	// VPNEncryptionAlgorithmTypeVAes128 undocumented
   102  	VPNEncryptionAlgorithmTypeVAes128 VPNEncryptionAlgorithmType = "aes128"
   103  	// VPNEncryptionAlgorithmTypeVAes128Gcm undocumented
   104  	VPNEncryptionAlgorithmTypeVAes128Gcm VPNEncryptionAlgorithmType = "aes128Gcm"
   105  	// VPNEncryptionAlgorithmTypeVAes256Gcm undocumented
   106  	VPNEncryptionAlgorithmTypeVAes256Gcm VPNEncryptionAlgorithmType = "aes256Gcm"
   107  )
   108  
   109  var (
   110  	// VPNEncryptionAlgorithmTypePAes256 is a pointer to VPNEncryptionAlgorithmTypeVAes256
   111  	VPNEncryptionAlgorithmTypePAes256 = &_VPNEncryptionAlgorithmTypePAes256
   112  	// VPNEncryptionAlgorithmTypePDes is a pointer to VPNEncryptionAlgorithmTypeVDes
   113  	VPNEncryptionAlgorithmTypePDes = &_VPNEncryptionAlgorithmTypePDes
   114  	// VPNEncryptionAlgorithmTypePTripleDes is a pointer to VPNEncryptionAlgorithmTypeVTripleDes
   115  	VPNEncryptionAlgorithmTypePTripleDes = &_VPNEncryptionAlgorithmTypePTripleDes
   116  	// VPNEncryptionAlgorithmTypePAes128 is a pointer to VPNEncryptionAlgorithmTypeVAes128
   117  	VPNEncryptionAlgorithmTypePAes128 = &_VPNEncryptionAlgorithmTypePAes128
   118  	// VPNEncryptionAlgorithmTypePAes128Gcm is a pointer to VPNEncryptionAlgorithmTypeVAes128Gcm
   119  	VPNEncryptionAlgorithmTypePAes128Gcm = &_VPNEncryptionAlgorithmTypePAes128Gcm
   120  	// VPNEncryptionAlgorithmTypePAes256Gcm is a pointer to VPNEncryptionAlgorithmTypeVAes256Gcm
   121  	VPNEncryptionAlgorithmTypePAes256Gcm = &_VPNEncryptionAlgorithmTypePAes256Gcm
   122  )
   123  
   124  var (
   125  	_VPNEncryptionAlgorithmTypePAes256    = VPNEncryptionAlgorithmTypeVAes256
   126  	_VPNEncryptionAlgorithmTypePDes       = VPNEncryptionAlgorithmTypeVDes
   127  	_VPNEncryptionAlgorithmTypePTripleDes = VPNEncryptionAlgorithmTypeVTripleDes
   128  	_VPNEncryptionAlgorithmTypePAes128    = VPNEncryptionAlgorithmTypeVAes128
   129  	_VPNEncryptionAlgorithmTypePAes128Gcm = VPNEncryptionAlgorithmTypeVAes128Gcm
   130  	_VPNEncryptionAlgorithmTypePAes256Gcm = VPNEncryptionAlgorithmTypeVAes256Gcm
   131  )
   132  
   133  // VPNIntegrityAlgorithmType undocumented
   134  type VPNIntegrityAlgorithmType string
   135  
   136  const (
   137  	// VPNIntegrityAlgorithmTypeVSha2_256 undocumented
   138  	VPNIntegrityAlgorithmTypeVSha2_256 VPNIntegrityAlgorithmType = "sha2_256"
   139  	// VPNIntegrityAlgorithmTypeVSha1_96 undocumented
   140  	VPNIntegrityAlgorithmTypeVSha1_96 VPNIntegrityAlgorithmType = "sha1_96"
   141  	// VPNIntegrityAlgorithmTypeVSha1_160 undocumented
   142  	VPNIntegrityAlgorithmTypeVSha1_160 VPNIntegrityAlgorithmType = "sha1_160"
   143  	// VPNIntegrityAlgorithmTypeVSha2_384 undocumented
   144  	VPNIntegrityAlgorithmTypeVSha2_384 VPNIntegrityAlgorithmType = "sha2_384"
   145  	// VPNIntegrityAlgorithmTypeVSha2_512 undocumented
   146  	VPNIntegrityAlgorithmTypeVSha2_512 VPNIntegrityAlgorithmType = "sha2_512"
   147  )
   148  
   149  var (
   150  	// VPNIntegrityAlgorithmTypePSha2_256 is a pointer to VPNIntegrityAlgorithmTypeVSha2_256
   151  	VPNIntegrityAlgorithmTypePSha2_256 = &_VPNIntegrityAlgorithmTypePSha2_256
   152  	// VPNIntegrityAlgorithmTypePSha1_96 is a pointer to VPNIntegrityAlgorithmTypeVSha1_96
   153  	VPNIntegrityAlgorithmTypePSha1_96 = &_VPNIntegrityAlgorithmTypePSha1_96
   154  	// VPNIntegrityAlgorithmTypePSha1_160 is a pointer to VPNIntegrityAlgorithmTypeVSha1_160
   155  	VPNIntegrityAlgorithmTypePSha1_160 = &_VPNIntegrityAlgorithmTypePSha1_160
   156  	// VPNIntegrityAlgorithmTypePSha2_384 is a pointer to VPNIntegrityAlgorithmTypeVSha2_384
   157  	VPNIntegrityAlgorithmTypePSha2_384 = &_VPNIntegrityAlgorithmTypePSha2_384
   158  	// VPNIntegrityAlgorithmTypePSha2_512 is a pointer to VPNIntegrityAlgorithmTypeVSha2_512
   159  	VPNIntegrityAlgorithmTypePSha2_512 = &_VPNIntegrityAlgorithmTypePSha2_512
   160  )
   161  
   162  var (
   163  	_VPNIntegrityAlgorithmTypePSha2_256 = VPNIntegrityAlgorithmTypeVSha2_256
   164  	_VPNIntegrityAlgorithmTypePSha1_96  = VPNIntegrityAlgorithmTypeVSha1_96
   165  	_VPNIntegrityAlgorithmTypePSha1_160 = VPNIntegrityAlgorithmTypeVSha1_160
   166  	_VPNIntegrityAlgorithmTypePSha2_384 = VPNIntegrityAlgorithmTypeVSha2_384
   167  	_VPNIntegrityAlgorithmTypePSha2_512 = VPNIntegrityAlgorithmTypeVSha2_512
   168  )
   169  
   170  // VPNLocalIdentifier undocumented
   171  type VPNLocalIdentifier string
   172  
   173  const (
   174  	// VPNLocalIdentifierVDeviceFQDN undocumented
   175  	VPNLocalIdentifierVDeviceFQDN VPNLocalIdentifier = "deviceFQDN"
   176  	// VPNLocalIdentifierVEmpty undocumented
   177  	VPNLocalIdentifierVEmpty VPNLocalIdentifier = "empty"
   178  	// VPNLocalIdentifierVClientCertificateSubjectName undocumented
   179  	VPNLocalIdentifierVClientCertificateSubjectName VPNLocalIdentifier = "clientCertificateSubjectName"
   180  )
   181  
   182  var (
   183  	// VPNLocalIdentifierPDeviceFQDN is a pointer to VPNLocalIdentifierVDeviceFQDN
   184  	VPNLocalIdentifierPDeviceFQDN = &_VPNLocalIdentifierPDeviceFQDN
   185  	// VPNLocalIdentifierPEmpty is a pointer to VPNLocalIdentifierVEmpty
   186  	VPNLocalIdentifierPEmpty = &_VPNLocalIdentifierPEmpty
   187  	// VPNLocalIdentifierPClientCertificateSubjectName is a pointer to VPNLocalIdentifierVClientCertificateSubjectName
   188  	VPNLocalIdentifierPClientCertificateSubjectName = &_VPNLocalIdentifierPClientCertificateSubjectName
   189  )
   190  
   191  var (
   192  	_VPNLocalIdentifierPDeviceFQDN                   = VPNLocalIdentifierVDeviceFQDN
   193  	_VPNLocalIdentifierPEmpty                        = VPNLocalIdentifierVEmpty
   194  	_VPNLocalIdentifierPClientCertificateSubjectName = VPNLocalIdentifierVClientCertificateSubjectName
   195  )
   196  
   197  // VPNOnDemandRuleConnectionAction undocumented
   198  type VPNOnDemandRuleConnectionAction string
   199  
   200  const (
   201  	// VPNOnDemandRuleConnectionActionVConnect undocumented
   202  	VPNOnDemandRuleConnectionActionVConnect VPNOnDemandRuleConnectionAction = "connect"
   203  	// VPNOnDemandRuleConnectionActionVEvaluateConnection undocumented
   204  	VPNOnDemandRuleConnectionActionVEvaluateConnection VPNOnDemandRuleConnectionAction = "evaluateConnection"
   205  	// VPNOnDemandRuleConnectionActionVIgnore undocumented
   206  	VPNOnDemandRuleConnectionActionVIgnore VPNOnDemandRuleConnectionAction = "ignore"
   207  	// VPNOnDemandRuleConnectionActionVDisconnect undocumented
   208  	VPNOnDemandRuleConnectionActionVDisconnect VPNOnDemandRuleConnectionAction = "disconnect"
   209  )
   210  
   211  var (
   212  	// VPNOnDemandRuleConnectionActionPConnect is a pointer to VPNOnDemandRuleConnectionActionVConnect
   213  	VPNOnDemandRuleConnectionActionPConnect = &_VPNOnDemandRuleConnectionActionPConnect
   214  	// VPNOnDemandRuleConnectionActionPEvaluateConnection is a pointer to VPNOnDemandRuleConnectionActionVEvaluateConnection
   215  	VPNOnDemandRuleConnectionActionPEvaluateConnection = &_VPNOnDemandRuleConnectionActionPEvaluateConnection
   216  	// VPNOnDemandRuleConnectionActionPIgnore is a pointer to VPNOnDemandRuleConnectionActionVIgnore
   217  	VPNOnDemandRuleConnectionActionPIgnore = &_VPNOnDemandRuleConnectionActionPIgnore
   218  	// VPNOnDemandRuleConnectionActionPDisconnect is a pointer to VPNOnDemandRuleConnectionActionVDisconnect
   219  	VPNOnDemandRuleConnectionActionPDisconnect = &_VPNOnDemandRuleConnectionActionPDisconnect
   220  )
   221  
   222  var (
   223  	_VPNOnDemandRuleConnectionActionPConnect            = VPNOnDemandRuleConnectionActionVConnect
   224  	_VPNOnDemandRuleConnectionActionPEvaluateConnection = VPNOnDemandRuleConnectionActionVEvaluateConnection
   225  	_VPNOnDemandRuleConnectionActionPIgnore             = VPNOnDemandRuleConnectionActionVIgnore
   226  	_VPNOnDemandRuleConnectionActionPDisconnect         = VPNOnDemandRuleConnectionActionVDisconnect
   227  )
   228  
   229  // VPNOnDemandRuleConnectionDomainAction undocumented
   230  type VPNOnDemandRuleConnectionDomainAction string
   231  
   232  const (
   233  	// VPNOnDemandRuleConnectionDomainActionVConnectIfNeeded undocumented
   234  	VPNOnDemandRuleConnectionDomainActionVConnectIfNeeded VPNOnDemandRuleConnectionDomainAction = "connectIfNeeded"
   235  	// VPNOnDemandRuleConnectionDomainActionVNeverConnect undocumented
   236  	VPNOnDemandRuleConnectionDomainActionVNeverConnect VPNOnDemandRuleConnectionDomainAction = "neverConnect"
   237  )
   238  
   239  var (
   240  	// VPNOnDemandRuleConnectionDomainActionPConnectIfNeeded is a pointer to VPNOnDemandRuleConnectionDomainActionVConnectIfNeeded
   241  	VPNOnDemandRuleConnectionDomainActionPConnectIfNeeded = &_VPNOnDemandRuleConnectionDomainActionPConnectIfNeeded
   242  	// VPNOnDemandRuleConnectionDomainActionPNeverConnect is a pointer to VPNOnDemandRuleConnectionDomainActionVNeverConnect
   243  	VPNOnDemandRuleConnectionDomainActionPNeverConnect = &_VPNOnDemandRuleConnectionDomainActionPNeverConnect
   244  )
   245  
   246  var (
   247  	_VPNOnDemandRuleConnectionDomainActionPConnectIfNeeded = VPNOnDemandRuleConnectionDomainActionVConnectIfNeeded
   248  	_VPNOnDemandRuleConnectionDomainActionPNeverConnect    = VPNOnDemandRuleConnectionDomainActionVNeverConnect
   249  )
   250  
   251  // VPNProviderType undocumented
   252  type VPNProviderType string
   253  
   254  const (
   255  	// VPNProviderTypeVNotConfigured undocumented
   256  	VPNProviderTypeVNotConfigured VPNProviderType = "notConfigured"
   257  	// VPNProviderTypeVAppProxy undocumented
   258  	VPNProviderTypeVAppProxy VPNProviderType = "appProxy"
   259  	// VPNProviderTypeVPacketTunnel undocumented
   260  	VPNProviderTypeVPacketTunnel VPNProviderType = "packetTunnel"
   261  )
   262  
   263  var (
   264  	// VPNProviderTypePNotConfigured is a pointer to VPNProviderTypeVNotConfigured
   265  	VPNProviderTypePNotConfigured = &_VPNProviderTypePNotConfigured
   266  	// VPNProviderTypePAppProxy is a pointer to VPNProviderTypeVAppProxy
   267  	VPNProviderTypePAppProxy = &_VPNProviderTypePAppProxy
   268  	// VPNProviderTypePPacketTunnel is a pointer to VPNProviderTypeVPacketTunnel
   269  	VPNProviderTypePPacketTunnel = &_VPNProviderTypePPacketTunnel
   270  )
   271  
   272  var (
   273  	_VPNProviderTypePNotConfigured = VPNProviderTypeVNotConfigured
   274  	_VPNProviderTypePAppProxy      = VPNProviderTypeVAppProxy
   275  	_VPNProviderTypePPacketTunnel  = VPNProviderTypeVPacketTunnel
   276  )
   277  
   278  // VPNServerCertificateType undocumented
   279  type VPNServerCertificateType string
   280  
   281  const (
   282  	// VPNServerCertificateTypeVRsa undocumented
   283  	VPNServerCertificateTypeVRsa VPNServerCertificateType = "rsa"
   284  	// VPNServerCertificateTypeVEcdsa256 undocumented
   285  	VPNServerCertificateTypeVEcdsa256 VPNServerCertificateType = "ecdsa256"
   286  	// VPNServerCertificateTypeVEcdsa384 undocumented
   287  	VPNServerCertificateTypeVEcdsa384 VPNServerCertificateType = "ecdsa384"
   288  	// VPNServerCertificateTypeVEcdsa521 undocumented
   289  	VPNServerCertificateTypeVEcdsa521 VPNServerCertificateType = "ecdsa521"
   290  )
   291  
   292  var (
   293  	// VPNServerCertificateTypePRsa is a pointer to VPNServerCertificateTypeVRsa
   294  	VPNServerCertificateTypePRsa = &_VPNServerCertificateTypePRsa
   295  	// VPNServerCertificateTypePEcdsa256 is a pointer to VPNServerCertificateTypeVEcdsa256
   296  	VPNServerCertificateTypePEcdsa256 = &_VPNServerCertificateTypePEcdsa256
   297  	// VPNServerCertificateTypePEcdsa384 is a pointer to VPNServerCertificateTypeVEcdsa384
   298  	VPNServerCertificateTypePEcdsa384 = &_VPNServerCertificateTypePEcdsa384
   299  	// VPNServerCertificateTypePEcdsa521 is a pointer to VPNServerCertificateTypeVEcdsa521
   300  	VPNServerCertificateTypePEcdsa521 = &_VPNServerCertificateTypePEcdsa521
   301  )
   302  
   303  var (
   304  	_VPNServerCertificateTypePRsa      = VPNServerCertificateTypeVRsa
   305  	_VPNServerCertificateTypePEcdsa256 = VPNServerCertificateTypeVEcdsa256
   306  	_VPNServerCertificateTypePEcdsa384 = VPNServerCertificateTypeVEcdsa384
   307  	_VPNServerCertificateTypePEcdsa521 = VPNServerCertificateTypeVEcdsa521
   308  )
   309  
   310  // VPNTrafficRuleAppType undocumented
   311  type VPNTrafficRuleAppType string
   312  
   313  const (
   314  	// VPNTrafficRuleAppTypeVNone undocumented
   315  	VPNTrafficRuleAppTypeVNone VPNTrafficRuleAppType = "none"
   316  	// VPNTrafficRuleAppTypeVDesktop undocumented
   317  	VPNTrafficRuleAppTypeVDesktop VPNTrafficRuleAppType = "desktop"
   318  	// VPNTrafficRuleAppTypeVUniversal undocumented
   319  	VPNTrafficRuleAppTypeVUniversal VPNTrafficRuleAppType = "universal"
   320  )
   321  
   322  var (
   323  	// VPNTrafficRuleAppTypePNone is a pointer to VPNTrafficRuleAppTypeVNone
   324  	VPNTrafficRuleAppTypePNone = &_VPNTrafficRuleAppTypePNone
   325  	// VPNTrafficRuleAppTypePDesktop is a pointer to VPNTrafficRuleAppTypeVDesktop
   326  	VPNTrafficRuleAppTypePDesktop = &_VPNTrafficRuleAppTypePDesktop
   327  	// VPNTrafficRuleAppTypePUniversal is a pointer to VPNTrafficRuleAppTypeVUniversal
   328  	VPNTrafficRuleAppTypePUniversal = &_VPNTrafficRuleAppTypePUniversal
   329  )
   330  
   331  var (
   332  	_VPNTrafficRuleAppTypePNone      = VPNTrafficRuleAppTypeVNone
   333  	_VPNTrafficRuleAppTypePDesktop   = VPNTrafficRuleAppTypeVDesktop
   334  	_VPNTrafficRuleAppTypePUniversal = VPNTrafficRuleAppTypeVUniversal
   335  )
   336  
   337  // VPNTrafficRuleRoutingPolicyType undocumented
   338  type VPNTrafficRuleRoutingPolicyType string
   339  
   340  const (
   341  	// VPNTrafficRuleRoutingPolicyTypeVNone undocumented
   342  	VPNTrafficRuleRoutingPolicyTypeVNone VPNTrafficRuleRoutingPolicyType = "none"
   343  	// VPNTrafficRuleRoutingPolicyTypeVSplitTunnel undocumented
   344  	VPNTrafficRuleRoutingPolicyTypeVSplitTunnel VPNTrafficRuleRoutingPolicyType = "splitTunnel"
   345  	// VPNTrafficRuleRoutingPolicyTypeVForceTunnel undocumented
   346  	VPNTrafficRuleRoutingPolicyTypeVForceTunnel VPNTrafficRuleRoutingPolicyType = "forceTunnel"
   347  )
   348  
   349  var (
   350  	// VPNTrafficRuleRoutingPolicyTypePNone is a pointer to VPNTrafficRuleRoutingPolicyTypeVNone
   351  	VPNTrafficRuleRoutingPolicyTypePNone = &_VPNTrafficRuleRoutingPolicyTypePNone
   352  	// VPNTrafficRuleRoutingPolicyTypePSplitTunnel is a pointer to VPNTrafficRuleRoutingPolicyTypeVSplitTunnel
   353  	VPNTrafficRuleRoutingPolicyTypePSplitTunnel = &_VPNTrafficRuleRoutingPolicyTypePSplitTunnel
   354  	// VPNTrafficRuleRoutingPolicyTypePForceTunnel is a pointer to VPNTrafficRuleRoutingPolicyTypeVForceTunnel
   355  	VPNTrafficRuleRoutingPolicyTypePForceTunnel = &_VPNTrafficRuleRoutingPolicyTypePForceTunnel
   356  )
   357  
   358  var (
   359  	_VPNTrafficRuleRoutingPolicyTypePNone        = VPNTrafficRuleRoutingPolicyTypeVNone
   360  	_VPNTrafficRuleRoutingPolicyTypePSplitTunnel = VPNTrafficRuleRoutingPolicyTypeVSplitTunnel
   361  	_VPNTrafficRuleRoutingPolicyTypePForceTunnel = VPNTrafficRuleRoutingPolicyTypeVForceTunnel
   362  )