diff options
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go new file mode 100644 index 00000000..3edeba99 --- /dev/null +++ b/vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go @@ -0,0 +1,25 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// VpnOnDemandRuleConnectionDomainAction undocumented +type VpnOnDemandRuleConnectionDomainAction int + +const ( + // VpnOnDemandRuleConnectionDomainActionVConnectIfNeeded undocumented + VpnOnDemandRuleConnectionDomainActionVConnectIfNeeded VpnOnDemandRuleConnectionDomainAction = 0 + // VpnOnDemandRuleConnectionDomainActionVNeverConnect undocumented + VpnOnDemandRuleConnectionDomainActionVNeverConnect VpnOnDemandRuleConnectionDomainAction = 1 +) + +// VpnOnDemandRuleConnectionDomainActionPConnectIfNeeded returns a pointer to VpnOnDemandRuleConnectionDomainActionVConnectIfNeeded +func VpnOnDemandRuleConnectionDomainActionPConnectIfNeeded() *VpnOnDemandRuleConnectionDomainAction { + v := VpnOnDemandRuleConnectionDomainActionVConnectIfNeeded + return &v +} + +// VpnOnDemandRuleConnectionDomainActionPNeverConnect returns a pointer to VpnOnDemandRuleConnectionDomainActionVNeverConnect +func VpnOnDemandRuleConnectionDomainActionPNeverConnect() *VpnOnDemandRuleConnectionDomainAction { + v := VpnOnDemandRuleConnectionDomainActionVNeverConnect + return &v +} |